rector/rules/Renaming/Contract/MethodCallRenameInterface.php
2021-05-10 22:23:08 +00:00

13 lines
296 B
PHP

<?php
declare (strict_types=1);
namespace Rector\Renaming\Contract;
use PHPStan\Type\ObjectType;
interface MethodCallRenameInterface
{
public function getOldObjectType() : \PHPStan\Type\ObjectType;
public function getOldMethod() : string;
public function getNewMethod() : string;
}