rector/rules/PSR4/Contract/PSR4AutoloadNamespaceMatcherInterface.php
Tomas Votruba 674f76ced2 Updated Rector to commit 877cbb2de8150b672a966d7a8907ed63769e1cdd
877cbb2de8 fix(scoper): prefix vendor classes from PHPDoc, close #6614 (#739)
2021-08-22 23:17:31 +00:00

16 lines
385 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 \RectorPrefix20210822\PhpParser\Node $node
*/
public function getExpectedNamespace($file, $node) : ?string;
}