1 | <?php |
||
4 | class IntegerColumn extends AbstractColumnDefinition implements NumericColumnInterface |
||
5 | { |
||
6 | /** |
||
7 | * |
||
8 | * @var bool |
||
9 | */ |
||
10 | protected $numericUnsigned = null; |
||
11 | |||
12 | /** |
||
13 | * |
||
14 | * @var bool |
||
15 | */ |
||
16 | protected $isAutoIncrement; |
||
17 | |||
18 | /** |
||
19 | * @return bool |
||
20 | */ |
||
21 | public function getNumericUnsigned() |
||
25 | |||
26 | /** |
||
27 | * @param bool $numericUnsigned |
||
28 | * @return IntegerColumn |
||
29 | */ |
||
30 | public function setNumericUnsigned($numericUnsigned) |
||
35 | |||
36 | |||
37 | /** |
||
38 | * @return bool |
||
39 | */ |
||
40 | public function isNumericUnsigned() |
||
44 | |||
45 | |||
46 | /** |
||
47 | * @param bool $isAutoIncrement to set |
||
48 | * @return IntegerColumn |
||
49 | */ |
||
50 | public function setIsAutoIncrement($isAutoIncrement) |
||
55 | |||
56 | /** |
||
57 | * @return bool $isAutoIncrement |
||
58 | */ |
||
59 | public function isAutoIncrement() |
||
63 | } |
||
64 |