Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Code Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
17 | protected function staticColumn($name, array $attributes = []) |
||
18 | { |
||
19 | return array_merge([ |
||
20 | 'data' => $name, |
||
21 | 'name' => $name, |
||
22 | 'title' => $this->html()->getQualifiedTitle($name), |
||
23 | 'defaultContent' => '', |
||
24 | 'render' => null, |
||
25 | 'orderable' => false, |
||
26 | 'searchable' => false, |
||
27 | 'exportable' => false, |
||
28 | 'printable' => true, |
||
29 | 'footer' => '', |
||
30 | ], $attributes); |
||
31 | } |
||
32 | |||
55 |