📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-29 22:32:08
📂
/
/
opt
/
cpanel
/
ea-wappspector
/
vendor
/
rector
/
rector
/
vendor
/
rector
/
rector-symfony
/
src
/
ValueObject
✏️
Editing: EventNameToClassAndConstant.php
<?php declare (strict_types=1); namespace Rector\Symfony\ValueObject; final class EventNameToClassAndConstant { /** * @readonly * @var string */ private $eventName; /** * @readonly * @var string */ private $eventClass; /** * @readonly * @var string */ private $eventConstant; public function __construct(string $eventName, string $eventClass, string $eventConstant) { $this->eventName = $eventName; $this->eventClass = $eventClass; $this->eventConstant = $eventConstant; } public function getEventName() : string { return $this->eventName; } public function getEventClass() : string { return $this->eventClass; } public function getEventConstant() : string { return $this->eventConstant; } }
💾 Save Changes
❌ Cancel