golden hour
/opt/cpanel/ea-wappspector/vendor/rector/rector/src/Contract/Rector
⬆️ Go Up
Upload
File/Folder
Size
Actions
ConfigurableRectorInterface.php
364 B
Del
OK
RectorInterface.php
717 B
Del
OK
ScopeAwareRectorInterface.php
422 B
Del
OK
Edit: ScopeAwareRectorInterface.php
<?php declare (strict_types=1); namespace Rector\Contract\Rector; use PhpParser\Node; use PhpParser\NodeTraverser; use PHPStan\Analyser\Scope; interface ScopeAwareRectorInterface extends \Rector\Contract\Rector\RectorInterface { /** * Process Node of matched type with its PHPStan scope * @return Node|Node[]|null|NodeTraverser::* */ public function refactorWithScope(Node $node, Scope $scope); }
Save