mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-15 05:15:04 +01:00
14 lines
260 B
PHP
14 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;
|
|
}
|