mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-08 09:01:20 +01:00
16 lines
555 B
PHP
16 lines
555 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() : \PhpParser\Node\Stmt\ClassLike;
|
|
public function getClassLikeName() : string;
|
|
public function getProperty() : \PhpParser\Node\Stmt\Property;
|
|
public function getPropertyProperty() : \PhpParser\Node\Stmt\PropertyProperty;
|
|
}
|