PATH:
opt
/
cpanel
/
ea-wappspector
/
vendor
/
rector
/
rector
/
vendor
/
rector
/
rector-symfony
/
src
/
ValueObject
<?php declare (strict_types=1); namespace Rector\Symfony\ValueObject; use PhpParser\Node\Expr; final class ReplaceServiceArgument { /** * @readonly * @var mixed */ private $oldValue; /** * @readonly * @var \PhpParser\Node\Expr */ private $newValueExpr; /** * @param mixed $oldValue */ public function __construct($oldValue, Expr $newValueExpr) { $this->oldValue = $oldValue; $this->newValueExpr = $newValueExpr; } /** * @return mixed */ public function getOldValue() { return $this->oldValue; } public function getNewValueExpr() : Expr { return $this->newValueExpr; } }
[-] ClassNameAndFilePath.php
[edit]
[+]
..
[-] EventReferenceToMethodName.php
[edit]
[-] IntlBundleClassToNewClass.php
[edit]
[-] ReplaceServiceArgument.php
[edit]
[+]
ServiceMap
[-] EventReferenceToMethodNameWithPriority.php
[edit]
[+]
Tag
[+]
ConstantMap
[-] ExtensionKeyAndConfiguration.php
[edit]
[+]
ValidatorAssert
[-] SymfonyRouteMetadata.php
[edit]
[-] ServiceDefinition.php
[edit]
[-] EventNameToClassAndConstant.php
[edit]
[-] Tag.php
[edit]