1
|
|
|
<?php |
2
|
|
|
/** |
3
|
|
|
* This file is part of PHP Mess Detector. |
4
|
|
|
* |
5
|
|
|
* Copyright (c) Manuel Pichler <[email protected]>. |
6
|
|
|
* All rights reserved. |
7
|
|
|
* |
8
|
|
|
* Licensed under BSD License |
9
|
|
|
* For full copyright and license information, please see the LICENSE file. |
10
|
|
|
* Redistributions of files must retain the above copyright notice. |
11
|
|
|
* |
12
|
|
|
* @author Manuel Pichler <[email protected]> |
13
|
|
|
* @copyright Manuel Pichler. All rights reserved. |
14
|
|
|
* @license https://opensource.org/licenses/bsd-license.php BSD License |
15
|
|
|
* @link http://phpmd.org/ |
16
|
|
|
*/ |
17
|
|
|
|
18
|
|
|
namespace PHPMD\Rule\CleanCode; |
19
|
|
|
|
20
|
|
|
use PHPMD\AbstractNode; |
21
|
|
|
use PHPMD\AbstractRule; |
22
|
|
|
use PHPMD\Node\ASTNode; |
23
|
|
|
use PHPMD\Rule\FunctionAware; |
24
|
|
|
use PHPMD\Rule\MethodAware; |
25
|
|
|
|
26
|
|
|
/** |
27
|
|
|
* Check if there is an else expression somewhere in the method/function and |
28
|
|
|
* warn about it. |
29
|
|
|
* |
30
|
|
|
* Object Calisthenics teaches us, that an else expression can always be |
31
|
|
|
* avoided by simple guard clause or return statements. |
32
|
|
|
*/ |
33
|
|
|
class ElseExpression extends AbstractRule implements MethodAware, FunctionAware |
34
|
|
|
{ |
35
|
|
|
/** |
36
|
|
|
* This method checks if a method/function uses an else expression and add a violation for each one found. |
37
|
|
|
* |
38
|
|
|
* @param \PHPMD\AbstractNode $node |
39
|
|
|
* @return void |
40
|
|
|
*/ |
41
|
4 |
|
public function apply(AbstractNode $node) |
42
|
|
|
{ |
43
|
4 |
|
foreach ($node->findChildrenOfType('ScopeStatement') as $scope) { |
44
|
4 |
|
$parent = $scope->getParent(); |
45
|
|
|
|
46
|
4 |
|
if (false === $this->isIfOrElseIfStatement($parent)) { |
|
|
|
|
47
|
|
|
continue; |
48
|
|
|
} |
49
|
|
|
|
50
|
4 |
|
if (false === $this->isElseScope($scope, $parent)) { |
|
|
|
|
51
|
4 |
|
continue; |
52
|
|
|
} |
53
|
|
|
|
54
|
3 |
|
if (true === $this->hasYieldOrYieldFrom($scope)) { |
55
|
1 |
|
continue; |
56
|
|
|
} |
57
|
|
|
|
58
|
2 |
|
$this->addViolation($scope, array($node->getImage())); |
59
|
|
|
} |
60
|
4 |
|
} |
61
|
|
|
|
62
|
|
|
/** |
63
|
|
|
* Whether the given scope is an else clause |
64
|
|
|
* |
65
|
|
|
* @param $scope |
66
|
|
|
* @param ASTNode $parent |
67
|
|
|
* @return bool |
68
|
|
|
*/ |
69
|
4 |
|
private function isElseScope($scope, ASTNode $parent) |
70
|
|
|
{ |
71
|
|
|
return ( |
72
|
4 |
|
count($parent->getChildren()) === 3 && |
|
|
|
|
73
|
4 |
|
$scope->getNode() === $parent->getChild(2)->getNode() |
74
|
|
|
); |
75
|
|
|
} |
76
|
|
|
|
77
|
|
|
/** |
78
|
|
|
* Whether the parent node is an if or an elseif clause |
79
|
|
|
* |
80
|
|
|
* @param ASTNode $parent |
81
|
|
|
* @return bool |
82
|
|
|
*/ |
83
|
4 |
|
private function isIfOrElseIfStatement(ASTNode $parent) |
84
|
|
|
{ |
85
|
4 |
|
return ($parent->getName() === "if" || $parent->getName() === "elseif"); |
86
|
|
|
} |
87
|
|
|
|
88
|
|
|
/** |
89
|
|
|
* Whether the given scope has a yield or yield from clause |
90
|
|
|
* |
91
|
|
|
* @param $scope |
92
|
|
|
* @return bool |
93
|
|
|
*/ |
94
|
3 |
|
private function hasYieldOrYieldFrom($scope) |
95
|
|
|
{ |
96
|
3 |
|
return (bool) $scope->getFirstChildOfType('YieldStatement'); |
97
|
|
|
} |
98
|
|
|
} |
99
|
|
|
|
Unless you are absolutely sure that the expression can never be null because of other conditions, we strongly recommend to add an additional type check to your code: