Conditions | 1 |
Paths | 1 |
Total Lines | 17 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
22 | public function items() |
||
23 | { |
||
24 | return [ |
||
25 | 'about' => [ |
||
26 | 'label' => Yii::t('hisite', 'About'), |
||
27 | 'url' => ['/site/about'], |
||
28 | ], |
||
29 | 'contact' => [ |
||
30 | 'label' => Yii::t('hisite', 'Contact'), |
||
31 | 'url' => ['/site/contact'], |
||
32 | ], |
||
33 | 'github' => [ |
||
34 | 'label' => 'GitHub', |
||
35 | 'url' => 'https://github.com/hiqdev/asset-packagist', |
||
36 | ], |
||
37 | ]; |
||
38 | } |
||
39 | } |
||
40 |