11 lines
251 B
PHP
11 lines
251 B
PHP
<?php
|
|
|
|
namespace Ulmus\Annotation\Property\Field;
|
|
|
|
class Longblob extends \Ulmus\Annotation\Property\Field
|
|
{
|
|
public function __construct(? string $type = "longblob", ? int $length = null)
|
|
{
|
|
parent::__construct($type, $length);
|
|
}
|
|
}
|