rector/rules/Naming/Contract/RenamePropertyValueObjectInterface.php

16 lines
555 B
PHP
Raw Normal View History

<?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;
}