File manager - Edit - /var/www/payraty/helpdesk/vendor/rector/rector/rules/Transform/ValueObject/MethodCallToAnotherMethodCallWithArguments.php
Back
<?php declare (strict_types=1); namespace Rector\Transform\ValueObject; use PHPStan\Type\ObjectType; use Rector\Core\Validation\RectorAssert; final class MethodCallToAnotherMethodCallWithArguments { /** * @readonly * @var string */ private $type; /** * @readonly * @var string */ private $oldMethod; /** * @readonly * @var string */ private $newMethod; /** * @var mixed[] * @readonly */ private $newArguments; /** * @param mixed[] $newArguments */ public function __construct(string $type, string $oldMethod, string $newMethod, array $newArguments) { $this->type = $type; $this->oldMethod = $oldMethod; $this->newMethod = $newMethod; $this->newArguments = $newArguments; RectorAssert::className($type); RectorAssert::methodName($oldMethod); RectorAssert::methodName($newMethod); } public function getObjectType() : ObjectType { return new ObjectType($this->type); } public function getOldMethod() : string { return $this->oldMethod; } public function getNewMethod() : string { return $this->newMethod; } /** * @return mixed[] */ public function getNewArguments() : array { return $this->newArguments; } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings