rector/rules/PSR4/Contract/PSR4AutoloadNamespaceMatcherInterface.php
2021-05-10 22:10:16 +00:00

12 lines
260 B
PHP

<?php
declare (strict_types=1);
namespace Rector\PSR4\Contract;
use PhpParser\Node;
use Rector\Core\ValueObject\Application\File;
interface PSR4AutoloadNamespaceMatcherInterface
{
public function getExpectedNamespace(File $file, Node $node) : ?string;
}