| 1 | <?php |
||
| 10 | class PathsDataTable extends AbstractDataTable |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * {@inheritdoc} |
||
| 14 | */ |
||
| 15 | protected $model = Path::class; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * {@inheritdoc} |
||
| 19 | */ |
||
| 20 | protected $createButton = false; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Get columns. |
||
| 24 | * |
||
| 25 | * @return array |
||
| 26 | */ |
||
| 27 | protected function getColumns(): array |
||
| 38 | } |
||
| 39 |
Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.