2020-10-03 21:18:12 +02:00
|
|
|
<?php
|
|
|
|
|
2021-05-09 20:15:43 +00:00
|
|
|
declare (strict_types=1);
|
2022-06-06 17:12:56 +00:00
|
|
|
namespace Rector\Naming\Contract;
|
2020-10-03 21:18:12 +02:00
|
|
|
|
2022-06-06 17:12:56 +00:00
|
|
|
use PhpParser\Node\Stmt\ClassLike;
|
|
|
|
use PhpParser\Node\Stmt\Property;
|
|
|
|
use PhpParser\Node\Stmt\PropertyProperty;
|
|
|
|
interface RenamePropertyValueObjectInterface extends \Rector\Naming\Contract\RenameValueObjectInterface
|
2020-10-03 21:18:12 +02:00
|
|
|
{
|
2022-06-07 08:22:29 +00:00
|
|
|
public function getClassLike() : ClassLike;
|
2021-05-09 20:15:43 +00:00
|
|
|
public function getClassLikeName() : string;
|
2022-06-07 08:22:29 +00:00
|
|
|
public function getProperty() : Property;
|
|
|
|
public function getPropertyProperty() : PropertyProperty;
|
2020-10-03 21:18:12 +02:00
|
|
|
}
|