1 | <?php |
||
35 | class Group extends Column implements GroupInterface |
||
36 | { |
||
37 | /** |
||
38 | * @return string |
||
39 | */ |
||
40 | protected $foreignTable; |
||
41 | |||
42 | /** |
||
43 | * @return string |
||
44 | */ |
||
45 | protected $internalType; |
||
46 | |||
47 | /** |
||
48 | * @return int |
||
49 | */ |
||
50 | protected $minItems; |
||
51 | |||
52 | /** |
||
53 | * @return int |
||
54 | */ |
||
55 | protected $maxItems; |
||
56 | |||
57 | /** |
||
58 | * @return int |
||
59 | */ |
||
60 | protected $size; |
||
61 | |||
62 | /** |
||
63 | * Input constructor. |
||
64 | * |
||
65 | * @param string $columnName |
||
66 | * @param $configuration |
||
67 | */ |
||
68 | public function __construct($columnName, $configuration) |
||
77 | |||
78 | /** |
||
79 | * @return string |
||
80 | */ |
||
81 | public function getForeignTable() |
||
85 | |||
86 | /** |
||
87 | * @return string |
||
88 | */ |
||
89 | public function getInternalType() |
||
93 | |||
94 | /** |
||
95 | * @return int |
||
96 | */ |
||
97 | public function getMinItems() |
||
101 | |||
102 | /** |
||
103 | * @return int |
||
104 | */ |
||
105 | public function getMaxItems() |
||
109 | |||
110 | /** |
||
111 | * @return int |
||
112 | */ |
||
113 | public function getSize() |
||
117 | } |
||
118 |