Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: Rule.php
<?php declare(strict_types = 1); namespace PHPStan\Rules; use PhpParser\Node; use PHPStan\Analyser\Scope; interface Rule { /** * @return string Class implementing \PhpParser\Node */ public function getNodeType(): string; /** * @param \PhpParser\Node $node * @param \PHPStan\Analyser\Scope $scope * @return (string|RuleError)[] errors */ public function processNode(Node $node, Scope $scope): array; }