opt
/
cpanel
/
ea-wappspector
/
vendor
/
rector
/
rector
/
vendor
/
rector
/
rector-symfony
/
src
/
ValueObject
➕ New
📤 Upload
✎ Editing:
ServiceDefinition.php
← Back
<?php declare (strict_types=1); namespace Rector\Symfony\ValueObject; use Rector\Symfony\Contract\Tag\TagInterface; final class ServiceDefinition { /** * @readonly * @var string */ private $id; /** * @readonly * @var string|null */ private $class; /** * @readonly * @var bool */ private $isPublic; /** * @readonly * @var bool */ private $isSynthetic; /** * @readonly * @var string|null */ private $alias; /** * @var TagInterface[] * @readonly */ private $tags; /** * @param TagInterface[] $tags */ public function __construct(string $id, ?string $class, bool $isPublic, bool $isSynthetic, ?string $alias, array $tags) { $this->id = $id; $this->class = $class; $this->isPublic = $isPublic; $this->isSynthetic = $isSynthetic; $this->alias = $alias; $this->tags = $tags; } public function getId() : string { return $this->id; } public function getClass() : ?string { return $this->class; } public function isPublic() : bool { return $this->isPublic; } public function isSynthetic() : bool { return $this->isSynthetic; } public function getAlias() : ?string { return $this->alias; } /** * @return TagInterface[] */ public function getTags() : array { return $this->tags; } public function getTag(string $name) : ?TagInterface { foreach ($this->tags as $tag) { if ($tag->getName() !== $name) { continue; } return $tag; } return null; } }
💾 Save Changes
Cancel
📤 Upload File
×
Select File
Upload
Cancel
➕ Create New
×
Type
📄 File
📁 Folder
Name
Create
Cancel
✎ Rename Item
×
Current Name
New Name
Rename
Cancel
🔐 Change Permissions
×
Target File
Permission (e.g., 0755, 0644)
0755
0644
0777
Apply
Cancel