📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-29 15:30:37
📂
/
/
opt
/
cpanel
/
ea-wappspector
/
vendor
/
rector
/
rector
/
rules
/
Transform
/
ValueObject
✏️
Editing: ArrayDimFetchToMethodCall.php
<?php declare (strict_types=1); namespace Rector\Transform\ValueObject; use PHPStan\Type\ObjectType; class ArrayDimFetchToMethodCall { /** * @readonly * @var \PHPStan\Type\ObjectType */ private $objectType; /** * @readonly * @var string */ private $method; public function __construct(ObjectType $objectType, string $method) { $this->objectType = $objectType; $this->method = $method; } public function getObjectType() : ObjectType { return $this->objectType; } public function getMethod() : string { return $this->method; } }
💾 Save Changes
❌ Cancel