Completed
Push — master ( 17d161...0d226c )
by Klochok
06:57
created

HdomainRepresentations::fillRepresentations()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 19
Code Lines 14

Duplication

Lines 19
Ratio 100 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 19
loc 19
ccs 0
cts 11
cp 0
rs 9.4285
cc 1
eloc 14
nc 1
nop 0
crap 2
1
<?php
2
3
namespace hipanel\modules\hosting\grid;
4
5
use hiqdev\higrid\representations\RepresentationCollection;
6
use Yii;
7
8 View Code Duplication
class HdomainRepresentations extends RepresentationCollection
0 ignored issues
show
Duplication introduced by
This class seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
9
{
10
    protected function fillRepresentations()
11
    {
12
        $this->representations = array_filter([
13
            'common' => [
14
                'label' => Yii::t('hipanel', 'common'),
15
                'columns' => [
16
                    'checkbox',
17
                    'hdomain_with_aliases',
18
                    'client',
19
                    'seller',
20
                    'account',
21
                    'server',
22
                    'state',
23
                    'ip',
24
                    'service',
25
                ],
26
            ],
27
        ]);
28
    }
29
}
30