Current Path: > > opt > cloudlinux > alt-php55 > root > usr > share > > pear > Symfony > Component > DependencyInjection
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
Compiler | Directory | - | - | |
Dumper | Directory | - | - | |
Exception | Directory | - | - | |
Extension | Directory | - | - | |
LazyProxy | Directory | - | - | |
Loader | Directory | - | - | |
ParameterBag | Directory | - | - | |
Alias.php | File | 1276 bytes | December 18 2019 11:24:05. | |
Container.php | File | 16965 bytes | December 18 2019 11:24:05. | |
ContainerAware.php | File | 873 bytes | December 18 2019 11:24:05. | |
ContainerAwareInterface.php | File | 714 bytes | December 18 2019 11:24:05. | |
ContainerAwareTrait.php | File | 755 bytes | December 18 2019 11:24:05. | |
ContainerBuilder.php | File | 33413 bytes | December 18 2019 11:24:05. | |
ContainerInterface.php | File | 3858 bytes | December 18 2019 11:24:05. | |
Definition.php | File | 14648 bytes | December 18 2019 11:24:05. | |
DefinitionDecorator.php | File | 4688 bytes | December 18 2019 11:24:05. | |
ExpressionLanguage.php | File | 1215 bytes | December 18 2019 11:24:05. | |
IntrospectableContainerInterface.php | File | 834 bytes | December 18 2019 11:24:05. | |
Parameter.php | File | 767 bytes | December 18 2019 11:24:05. | |
Reference.php | File | 1580 bytes | December 18 2019 11:24:05. | |
Scope.php | File | 877 bytes | December 18 2019 11:24:05. | |
ScopeInterface.php | File | 538 bytes | December 18 2019 11:24:05. | |
SimpleXMLElement.php | File | 3401 bytes | December 18 2019 11:24:05. | |
TaggedContainerInterface.php | File | 749 bytes | December 18 2019 11:24:05. | |
Variable.php | File | 823 bytes | December 18 2019 11:24:05. | |
autoloader.php | File | 349 bytes | December 18 2019 11:24:05. |
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\DependencyInjection; /** * Reference represents a service reference. * * @author Fabien Potencier <fabien@symfony.com> * * @api */ class Reference { private $id; private $invalidBehavior; private $strict; /** * Constructor. * * @param string $id The service identifier * @param int $invalidBehavior The behavior when the service does not exist * @param Boolean $strict Sets how this reference is validated * * @see Container */ public function __construct($id, $invalidBehavior = ContainerInterface::EXCEPTION_ON_INVALID_REFERENCE, $strict = true) { $this->id = strtolower($id); $this->invalidBehavior = $invalidBehavior; $this->strict = $strict; } /** * __toString. * * @return string The service identifier */ public function __toString() { return $this->id; } /** * Returns the behavior to be used when the service does not exist. * * @return int */ public function getInvalidBehavior() { return $this->invalidBehavior; } /** * Returns true when this Reference is strict * * @return Boolean */ public function isStrict() { return $this->strict; } }
SILENT KILLER Tool