mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-19 07:40:49 +01:00
13 lines
182 B
PHP
13 lines
182 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Rector\VendorLocker\Contract;
|
|
|
|
use PhpParser\Node;
|
|
|
|
interface NodeVendorLockerInterface
|
|
{
|
|
public function resolve(Node $node): bool;
|
|
}
|