mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-14 04:44:57 +01:00
16 lines
364 B
PHP
16 lines
364 B
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace Rector\PSR4\Contract;
|
|
|
|
use PhpParser\Node;
|
|
use Rector\Core\ValueObject\Application\File;
|
|
interface PSR4AutoloadNamespaceMatcherInterface
|
|
{
|
|
/**
|
|
* @param \Rector\Core\ValueObject\Application\File $file
|
|
* @param \PhpParser\Node $node
|
|
*/
|
|
public function getExpectedNamespace($file, $node) : ?string;
|
|
}
|