mirror of
https://github.com/rectorphp/rector.git
synced 2025-01-19 14:27:14 +01:00
aa2cb1b997
0eba231b07
[PHP 8.1] Move ConstantListClassToEnumRector to PHP 8.1 (#2444)
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;
|
|
}
|