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