Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
27 | protected function getColumns(): array |
||
28 | { |
||
29 | return [ |
||
30 | 'host' => ['title' => trans('cortex/statistics::common.host'), 'responsivePriority' => 0], |
||
31 | 'locale' => ['title' => trans('cortex/statistics::common.locale')], |
||
32 | 'accessarea' => ['title' => trans('cortex/statistics::common.accessarea')], |
||
33 | 'path' => ['title' => trans('cortex/statistics::common.path')], |
||
34 | 'parameters' => ['title' => trans('cortex/statistics::common.parameters'), 'render' => 'data ? JSON.stringify(data) : ""'], |
||
|
|||
35 | 'count' => ['title' => trans('cortex/statistics::common.count')], |
||
36 | ]; |
||
37 | } |
||
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.