| Total Complexity | 2 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | class TableComponent extends HtmlComponent |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var string |
||
| 11 | */ |
||
| 12 | public static string $tag = 'table'; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @param bool $responsive |
||
| 16 | * |
||
| 17 | * @return static |
||
| 18 | */ |
||
| 19 | public function responsive(bool $responsive = true): static |
||
| 22 | } |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @param string $style |
||
| 26 | * |
||
| 27 | * @return static |
||
| 28 | */ |
||
| 29 | public function look(string $style): static |
||
| 34 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.