PATH:
opt
/
cpanel
/
ea-wappspector
/
vendor
/
rector
/
rector
/
vendor
/
rector
/
rector-symfony
/
src
/
ValueObject
<?php declare (strict_types=1); namespace Rector\Symfony\ValueObject; use PhpParser\Node\Expr\ClassConstFetch; use Rector\Symfony\Contract\EventReferenceToMethodNameInterface; final class EventReferenceToMethodNameWithPriority implements EventReferenceToMethodNameInterface { /** * @readonly * @var \PhpParser\Node\Expr\ClassConstFetch */ private $classConstFetch; /** * @readonly * @var string */ private $methodName; /** * @readonly * @var int */ private $priority; public function __construct(ClassConstFetch $classConstFetch, string $methodName, int $priority) { $this->classConstFetch = $classConstFetch; $this->methodName = $methodName; $this->priority = $priority; } public function getClassConstFetch() : ClassConstFetch { return $this->classConstFetch; } public function getMethodName() : string { return $this->methodName; } public function getPriority() : int { return $this->priority; } }
[-] ClassNameAndFilePath.php
[edit]
[+]
..
[-] EventReferenceToMethodName.php
[edit]
[-] IntlBundleClassToNewClass.php
[edit]
[-] ReplaceServiceArgument.php
[edit]
[+]
ServiceMap
[-] EventReferenceToMethodNameWithPriority.php
[edit]
[+]
Tag
[+]
ConstantMap
[-] ExtensionKeyAndConfiguration.php
[edit]
[+]
ValidatorAssert
[-] SymfonyRouteMetadata.php
[edit]
[-] ServiceDefinition.php
[edit]
[-] EventNameToClassAndConstant.php
[edit]
[-] Tag.php
[edit]