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