Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: FunctionCallStatementFinder.php
<?php declare(strict_types = 1); namespace PHPStan\Parser; use PhpParser\Node\Expr\FuncCall; use PhpParser\Node\Name; class FunctionCallStatementFinder { /** * @param string[] $functionNames * @param mixed $statements * @return \PhpParser\Node|null */ public function findFunctionCallInStatements(array $functionNames, $statements): ?\PhpParser\Node { foreach ($statements as $statement) { if (is_array($statement)) { $result = $this->findFunctionCallInStatements($functionNames, $statement); if ($result !== null) { return $result; } } if (!($statement instanceof \PhpParser\Node)) { continue; } if ($statement instanceof FuncCall && $statement->name instanceof Name) { if (in_array((string) $statement->name, $functionNames, true)) { return $statement; } } $result = $this->findFunctionCallInStatements($functionNames, $statement); if ($result !== null) { return $result; } } return null; } }