rector/rules/PSR4/Contract/PSR4AutoloadNamespaceMatcherInterface.php

13 lines
202 B
PHP
Raw Normal View History

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