<?php

namespace Ulmus\Annotation\Property\Field;

class Longtext extends \Ulmus\Annotation\Property\Field
{
    public function __construct(? string $type = "longtext", ? int $length = null)
    {
        parent::__construct($type, $length);
    }
}