PATH:
opt
/
cpanel
/
ea-wappspector
/
vendor
/
rector
/
rector
/
rules
/
Renaming
/
ValueObject
<?php declare (strict_types=1); namespace Rector\Renaming\ValueObject; /** * @api */ final class RenameAttribute { /** * @readonly * @var string */ private $oldAttribute; /** * @readonly * @var string */ private $newAttribute; public function __construct(string $oldAttribute, string $newAttribute) { $this->oldAttribute = $oldAttribute; $this->newAttribute = $newAttribute; } public function getOldAttribute() : string { return $this->oldAttribute; } public function getNewAttribute() : string { return $this->newAttribute; } }
[-] MethodCallRenameWithArrayKey.php
[edit]
[-] RenameAnnotationByType.php
[edit]
[-] RenameFunctionLikeParamWithinCallLikeArg.php
[edit]
[+]
..
[-] RenameAttribute.php
[edit]
[-] RenameStaticMethod.php
[edit]
[-] MethodCallRename.php
[edit]
[-] RenameClassConstFetch.php
[edit]
[-] RenameClassAndConstFetch.php
[edit]
[-] RenameProperty.php
[edit]
[-] RenameAnnotation.php
[edit]