2020-09-28 20:29:37 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
2020-11-16 17:50:38 +00:00
|
|
|
namespace Rector\Naming\Contract;
|
2020-09-28 20:29:37 +02:00
|
|
|
|
|
|
|
interface RenameValueObjectInterface
|
|
|
|
{
|
|
|
|
public function getCurrentName(): string;
|
|
|
|
|
|
|
|
public function getExpectedName(): string;
|
|
|
|
}
|