| Name | Size | Mode | Actions |
|---|---|---|---|
| AbstractArgument.php | 925 | 0644 | editdlrm |
| ArgumentInterface.php | 570 | 0644 | editdlrm |
| BoundArgument.php | 1512 | 0644 | editdlrm |
| IteratorArgument.php | 514 | 0644 | editdlrm |
| ReferenceSetArgumentTrait.php | 1309 | 0644 | editdlrm |
| RewindableGenerator.php | 916 | 0644 | editdlrm |
| ServiceClosureArgument.php | 1195 | 0644 | editdlrm |
| ServiceLocator.php | 1287 | 0644 | editdlrm |
| ServiceLocatorArgument.php | 1064 | 0644 | editdlrm |
| TaggedIteratorArgument.php | 2772 | 0644 | editdlrm |
/usr/share/php/Symfony/Component/DependencyInjection/Argument/ServiceLocatorArgument.php (1064B)
*/ class ServiceLocatorArgument implements ArgumentInterface { use ReferenceSetArgumentTrait; private $taggedIteratorArgument; /** * @param Reference[]|TaggedIteratorArgument $values */ public function __construct($values = []) { if ($values instanceof TaggedIteratorArgument) { $this->taggedIteratorArgument = $values; $this->values = []; } else { $this->setValues($values); } } public function getTaggedIteratorArgument(): ?TaggedIteratorArgument { return $this->taggedIteratorArgument; } }