rector/rules/Renaming/Contract/MethodCallRenameInterface.php

13 lines
296 B
PHP
Raw Normal View History

<?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;
}