Total Complexity | 4 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
7 | class SerialColumn extends AbstractColumn |
||
8 | { |
||
9 | protected static $counter = 1; |
||
10 | |||
11 | public function getHeadContent() |
||
12 | { |
||
13 | return '#'; |
||
14 | } |
||
15 | |||
16 | public function hasFilter() |
||
19 | } |
||
20 | |||
21 | public function getFilterContent() |
||
22 | { |
||
23 | return ''; |
||
24 | } |
||
25 | |||
26 | public function getCellContent($entity) |
||
29 | } |
||
30 | } |
||
31 |