| Conditions | 3 |
| Paths | 1 |
| Total Lines | 16 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 12 |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | protected function fillRepresentations() |
||
| 19 | { |
||
| 20 | $columns = array_filter([ |
||
| 21 | (Yii::$app->user->can('plan.update') || Yii::$app->user->can('plan.delete')) ? 'checkbox' : null, |
||
| 22 | 'tariff', |
||
| 23 | 'used', |
||
| 24 | 'type', |
||
| 25 | 'client_id', |
||
| 26 | ]); |
||
| 27 | $this->representations = array_filter([ |
||
| 28 | 'common' => [ |
||
| 29 | 'label' => Yii::t('hipanel', 'common'), |
||
| 30 | 'columns' => $columns, |
||
| 31 | ], |
||
| 32 | ]); |
||
| 33 | } |
||
| 34 | } |
||
| 35 |