mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-10 18:51:20 +01:00
13 lines
296 B
PHP
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;
|
|
}
|