| Total Complexity | 3 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | class PageComponent extends BaseComponent |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @return int |
||
| 12 | */ |
||
| 13 | protected function count(): int |
||
| 14 | { |
||
| 15 | return 0; |
||
| 16 | } |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @return int |
||
| 20 | */ |
||
| 21 | protected function limit(): int |
||
| 22 | { |
||
| 23 | return 0; |
||
| 24 | } |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @return string |
||
| 28 | */ |
||
| 29 | public function html(): string |
||
| 32 | } |
||
| 33 | } |
||
| 34 |