%PDF- %PDF-
Direktori : /home/vacivi36/code/vendor/rector/rector/rules/Transform/ValueObject/ |
Current File : /home/vacivi36/code/vendor/rector/rector/rules/Transform/ValueObject/DimFetchAssignToMethodCall.php |
<?php declare (strict_types=1); namespace Rector\Transform\ValueObject; use PHPStan\Type\ObjectType; use Rector\Core\Validation\RectorAssert; final class DimFetchAssignToMethodCall { /** * @readonly * @var string */ private $listClass; /** * @readonly * @var string */ private $itemClass; /** * @readonly * @var string */ private $addMethod; public function __construct(string $listClass, string $itemClass, string $addMethod) { $this->listClass = $listClass; $this->itemClass = $itemClass; $this->addMethod = $addMethod; RectorAssert::methodName($addMethod); } public function getListObjectType() : ObjectType { return new ObjectType($this->listClass); } public function getItemObjectType() : ObjectType { return new ObjectType($this->itemClass); } public function getAddMethod() : string { return $this->addMethod; } }