rector/rules/Renaming/Contract/RenameAnnotationInterface.php
Tomas Votruba aa2cb1b997 Updated Rector to commit 0eba231b07
0eba231b07 [PHP 8.1] Move ConstantListClassToEnumRector to PHP 8.1 (#2444)
2022-06-06 17:12:56 +00:00

11 lines
208 B
PHP

<?php
declare (strict_types=1);
namespace Rector\Renaming\Contract;
interface RenameAnnotationInterface
{
public function getOldAnnotation() : string;
public function getNewAnnotation() : string;
}