Conditions | 1 |
Paths | 1 |
Total Lines | 17 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
10 | protected function fillRepresentations() |
||
11 | { |
||
12 | $this->representations = array_filter([ |
||
13 | 'consumers' => [ |
||
14 | 'label' => Yii::t('hipanel:ticket', 'Consumers'), |
||
15 | 'columns' => [ |
||
16 | 'client_id', 'spent', 'tickets', |
||
17 | ], |
||
18 | ], |
||
19 | 'performers' => [ |
||
20 | 'label' => Yii::t('hipanel:ticket', 'Performers'), |
||
21 | 'columns' => [ |
||
22 | 'client_id', 'spent', 'tickets', |
||
23 | ], |
||
24 | ], |
||
25 | ]); |
||
26 | } |
||
27 | } |
||
28 |