- Adapter some code to allow more flexibility for the new LDAP adapter from ulmus-ldap. - Insert's fields are now escaped by default. - A new RelationBuilder was added, a lot of code from the EntityTrait was moved into this. Some code from the Repository class will need to be moved there too.
11 lines
248 B
PHP
11 lines
248 B
PHP
<?php
|
|
|
|
namespace Ulmus\Annotation\Property\Field;
|
|
|
|
class Tinyint extends \Ulmus\Annotation\Property\Field
|
|
{
|
|
public function __construct(? string $type = "tinyint", ? int $length = null)
|
|
{
|
|
parent::__construct($type, $length);
|
|
}
|
|
} |