mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-08 09:01:20 +01:00
d56e7982d0
dedd4b55fe
make node_helper.php safe for similar names
11 lines
204 B
PHP
11 lines
204 B
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace Rector\Naming\Contract;
|
|
|
|
interface RenameValueObjectInterface
|
|
{
|
|
public function getCurrentName() : string;
|
|
public function getExpectedName() : string;
|
|
}
|