![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/cartforge.co/vendor/phpmd/phpmd/src/main/php/PHPMD/Rule/CleanCode/ |
<?php /** * This file is part of PHP Mess Detector. * * Copyright (c) Manuel Pichler <[email protected]>. * All rights reserved. * * Licensed under BSD License * For full copyright and license information, please see the LICENSE file. * Redistributions of files must retain the above copyright notice. * * @author Manuel Pichler <[email protected]> * @copyright Manuel Pichler. All rights reserved. * @license https://opensource.org/licenses/bsd-license.php BSD License * @link http://phpmd.org/ */ namespace PHPMD\Rule\CleanCode; use PHPMD\AbstractNode; use PHPMD\AbstractRule; use PHPMD\Node\ASTNode; use PHPMD\Rule\FunctionAware; use PHPMD\Rule\MethodAware; /** * Check if there is an else expression somewhere in the method/function and * warn about it. * * Object Calisthenics teaches us, that an else expression can always be * avoided by simple guard clause or return statements. */ class ElseExpression extends AbstractRule implements MethodAware, FunctionAware { /** * This method checks if a method/function uses an else expression and add a violation for each one found. * * @param \PHPMD\AbstractNode $node * @return void */ public function apply(AbstractNode $node) { foreach ($node->findChildrenOfType('ScopeStatement') as $scope) { $parent = $scope->getParent(); if (false === $this->isIfOrElseIfStatement($parent)) { continue; } if (false === $this->isElseScope($scope, $parent)) { continue; } $this->addViolation($scope, array($node->getImage())); } } /** * Whether the given scope is an else clause * * @param AbstractNode $scope * @param ASTNode $parent * @return bool */ protected function isElseScope(AbstractNode $scope, ASTNode $parent) { return ( count($parent->getChildren()) === 3 && $scope->getNode() === $parent->getChild(2)->getNode() ); } /** * Whether the parent node is an if or an elseif clause * * @param ASTNode $parent * @return bool */ protected function isIfOrElseIfStatement(ASTNode $parent) { return ($parent->getName() === "if" || $parent->getName() === "elseif"); } }