| 1 | <?php |
||
| 4 | class StringColumn extends AbstractColumnDefinition implements TextColumnInterface |
||
| 5 | { |
||
| 6 | /** |
||
| 7 | * |
||
| 8 | * @var int |
||
| 9 | */ |
||
| 10 | protected $characterMaximumLength = null; |
||
| 11 | |||
| 12 | |||
| 13 | |||
| 14 | /** |
||
| 15 | * @return int|null the $characterMaximumLength |
||
| 16 | */ |
||
| 17 | public function getCharacterMaximumLength() |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @param int $characterMaximumLength the $characterMaximumLength to set |
||
| 24 | * @return StringColumn |
||
| 25 | */ |
||
| 26 | public function setCharacterMaximumLength($characterMaximumLength) |
||
| 31 | } |
||
| 32 |