mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-15 05:15:04 +01:00
13 lines
202 B
PHP
13 lines
202 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace Rector\PSR4\Contract;
|
||
|
|
||
|
use PhpParser\Node;
|
||
|
|
||
|
interface PSR4AutoloadNamespaceMatcherInterface
|
||
|
{
|
||
|
public function getExpectedNamespace(Node $node): ?string;
|
||
|
}
|