mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-11 11:11:12 +01:00
17 lines
291 B
PHP
17 lines
291 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Rector\Renaming\Contract;
|
|
|
|
use PHPStan\Type\ObjectType;
|
|
|
|
interface RenameClassConstFetchInterface
|
|
{
|
|
public function getOldObjectType(): ObjectType;
|
|
|
|
public function getOldConstant(): string;
|
|
|
|
public function getNewConstant(): string;
|
|
}
|