| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 33 | protected function getColumns(): array |
||
| 34 | { |
||
| 35 | return [ |
||
| 36 | 'host' => ['title' => trans('cortex/statistics::common.host'), 'responsivePriority' => 0], |
||
| 37 | 'locale' => ['title' => trans('cortex/statistics::common.locale')], |
||
| 38 | 'accessarea' => ['title' => trans('cortex/statistics::common.accessarea')], |
||
| 39 | 'path' => ['title' => trans('cortex/statistics::common.path')], |
||
| 40 | 'parameters' => ['title' => trans('cortex/statistics::common.parameters'), 'render' => 'data ? JSON.stringify(data) : ""'], |
||
| 41 | 'count' => ['title' => trans('cortex/statistics::common.count')], |
||
| 42 | ]; |
||
| 43 | } |
||
| 44 | } |
||
| 45 |