mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-08 17:10:54 +01:00
7d36c3b0b9
a80cf5292d
revert to working scoper 0.14
11 lines
286 B
PHP
11 lines
286 B
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace Rector\Naming\Contract\Guard;
|
|
|
|
use Rector\Naming\Contract\RenameValueObjectInterface;
|
|
interface ConflictingNameGuardInterface
|
|
{
|
|
public function isConflicting(\Rector\Naming\Contract\RenameValueObjectInterface $renameValueObject) : bool;
|
|
}
|