PATH:
opt
/
cpanel
/
ea-wappspector
/
vendor
/
rector
/
rector
/
vendor
/
rector
/
rector-symfony
/
src
/
ValueObject
<?php declare (strict_types=1); namespace Rector\Symfony\ValueObject; use Rector\Symfony\Contract\Tag\TagInterface; final class Tag implements TagInterface { /** * @readonly * @var string */ private $name; /** * @var array<string, mixed> * @readonly */ private $data = []; /** * @param array<string, mixed> $data */ public function __construct(string $name, array $data = []) { $this->name = $name; $this->data = $data; } public function getName() : string { return $this->name; } /** * @return array<string, mixed> */ public function getData() : array { return $this->data; } }
[-] 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]