mirror of
https://github.com/rectorphp/rector.git
synced 2025-01-18 05:48:21 +01:00
bdfd24339f
2e977bd3aa
deploy to original repository
16 lines
492 B
PHP
16 lines
492 B
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace Rector\Naming\Contract;
|
|
|
|
use PhpParser\Node\Stmt\ClassLike;
|
|
use PhpParser\Node\Stmt\Property;
|
|
use PhpParser\Node\Stmt\PropertyProperty;
|
|
interface RenamePropertyValueObjectInterface extends \Rector\Naming\Contract\RenameValueObjectInterface
|
|
{
|
|
public function getClassLike() : ClassLike;
|
|
public function getClassLikeName() : string;
|
|
public function getProperty() : Property;
|
|
public function getPropertyProperty() : PropertyProperty;
|
|
}
|