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