Total Complexity | 1 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
16 | final class YiisoftConfig extends YiiConfig |
||
17 | { |
||
18 | /** |
||
19 | * {@inheritdoc} |
||
20 | */ |
||
21 | public function __construct() |
||
22 | { |
||
23 | parent::__construct('yiisoft-cs-config'); |
||
24 | |||
25 | $header = <<<'HEADER' |
||
26 | @link http://www.yiiframework.com/ |
||
27 | @copyright Copyright (c) 2008 Yii Software LLC |
||
28 | @license http://www.yiiframework.com/license/ |
||
29 | HEADER; |
||
30 | |||
31 | $this->mergeRules([ |
||
32 | 'header_comment' => [ |
||
33 | 'header' => $header, |
||
34 | 'commentType' => 'PHPDoc', |
||
35 | 'separate' => 'bottom', |
||
36 | ], |
||
40 |