Conditions | 2 |
Paths | 2 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 8 |
Ratio | 100 % |
Changes | 0 |
1 | <?php |
||
42 | View Code Duplication | protected function beforeAction($action) |
|
43 | { |
||
44 | if (Yii::app()->params['isPartOfWline']) { |
||
45 | throw new CHttpException(1, 'Ez az aloldal nem használható. ' . CHtml::link('főoldal', ['/site'])); //own nick |
||
46 | } |
||
47 | |||
48 | return true; |
||
49 | } |
||
50 | } |
||
51 |
This check looks for improperly formatted assignments.
Every assignment must have exactly one space before and one space after the equals operator.
To illustrate:
will have no issues, while
will report issues in lines 1 and 2.