SILENT KILLERPanel

Current Path: > > opt > > cloudlinux > alt-php54 > 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 ]

Files and Folders in: //opt//cloudlinux/alt-php54/root/usr/share/pear//Symfony/Component/DependencyInjection

NameTypeSizeLast ModifiedActions
Compiler Directory - -
Dumper Directory - -
Exception Directory - -
Extension Directory - -
LazyProxy Directory - -
Loader Directory - -
ParameterBag Directory - -
Alias.php File 1276 bytes December 18 2019 11:22:56.
Container.php File 16965 bytes December 18 2019 11:22:56.
ContainerAware.php File 873 bytes December 18 2019 11:22:56.
ContainerAwareInterface.php File 714 bytes December 18 2019 11:22:56.
ContainerAwareTrait.php File 755 bytes December 18 2019 11:22:56.
ContainerBuilder.php File 33413 bytes December 18 2019 11:22:56.
ContainerInterface.php File 3858 bytes December 18 2019 11:22:56.
Definition.php File 14648 bytes December 18 2019 11:22:56.
DefinitionDecorator.php File 4688 bytes December 18 2019 11:22:56.
ExpressionLanguage.php File 1215 bytes December 18 2019 11:22:56.
IntrospectableContainerInterface.php File 834 bytes December 18 2019 11:22:56.
Parameter.php File 767 bytes December 18 2019 11:22:56.
Reference.php File 1580 bytes December 18 2019 11:22:56.
Scope.php File 877 bytes December 18 2019 11:22:56.
ScopeInterface.php File 538 bytes December 18 2019 11:22:56.
SimpleXMLElement.php File 3401 bytes December 18 2019 11:22:56.
TaggedContainerInterface.php File 749 bytes December 18 2019 11:22:56.
Variable.php File 823 bytes December 18 2019 11:22:56.
autoloader.php File 349 bytes December 18 2019 11:22:56.

Reading File: //opt//cloudlinux/alt-php54/root/usr/share/pear//Symfony/Component/DependencyInjection/Variable.php

<?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;

/**
 * Represents a variable.
 *
 *     $var = new Variable('a');
 *
 * will be dumped as
 *
 *     $a
 *
 * by the PHP dumper.
 *
 * @author Johannes M. Schmitt <schmittjoh@gmail.com>
 */
class Variable
{
    private $name;

    /**
     * Constructor
     *
     * @param string $name
     */
    public function __construct($name)
    {
        $this->name = $name;
    }

    /**
     * Converts the object to a string
     *
     * @return string
     */
    public function __toString()
    {
        return $this->name;
    }
}

SILENT KILLER Tool