📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-29 22:30:45
📂
/
/
opt
/
cpanel
/
ea-wappspector
/
vendor
/
rector
/
rector
/
vendor
/
rector
/
rector-symfony
/
src
/
ValueObject
✏️
Editing: EventReferenceToMethodName.php
<?php declare (strict_types=1); namespace Rector\Symfony\ValueObject; use PhpParser\Node\Expr\ClassConstFetch; use Rector\Symfony\Contract\EventReferenceToMethodNameInterface; final class EventReferenceToMethodName implements EventReferenceToMethodNameInterface { /** * @readonly * @var \PhpParser\Node\Expr\ClassConstFetch */ private $classConstFetch; /** * @readonly * @var string */ private $methodName; public function __construct(ClassConstFetch $classConstFetch, string $methodName) { $this->classConstFetch = $classConstFetch; $this->methodName = $methodName; } public function getClassConstFetch() : ClassConstFetch { return $this->classConstFetch; } public function getMethodName() : string { return $this->methodName; } }
💾 Save Changes
❌ Cancel