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; /** * @api */ class Alias { private $id; private $public; /** * Constructor. * * @param string $id Alias identifier * @param Boolean $public If this alias is public * * @api */ public function __construct($id, $public = true) { $this->id = strtolower($id); $this->public = $public; } /** * Checks if this DI Alias should be public or not. * * @return Boolean * * @api */ public function isPublic() { return $this->public; } /** * Sets if this Alias is public. * * @param Boolean $boolean If this Alias should be public * * @api */ public function setPublic($boolean) { $this->public = (Boolean) $boolean; } /** * Returns the Id of this alias. * * @return string The alias id * * @api */ public function __toString() { return $this->id; } }
SILENT KILLER Tool