mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-14 21:04:48 +01:00
12 lines
308 B
PHP
12 lines
308 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(\Rector\Core\ValueObject\Application\File $file, \PhpParser\Node $node) : ?string;
|
|
}
|