PHP 8.2.30
Preview: RemoveUnusedDefinitionsPass.php Size: 2.71 KB
/opt/cloudlinux/alt-php53/root/usr/share/pear/Symfony/Component/DependencyInjection/Compiler/RemoveUnusedDefinitionsPass.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\Compiler;

use Symfony\Component\DependencyInjection\ContainerBuilder;

/**
 * Removes unused service definitions from the container.
 *
 * @author Johannes M. Schmitt <schmittjoh@gmail.com>
 */
class RemoveUnusedDefinitionsPass implements RepeatablePassInterface
{
    private $repeatedPass;

    /**
     * {@inheritDoc}
     */
    public function setRepeatedPass(RepeatedPass $repeatedPass)
    {
        $this->repeatedPass = $repeatedPass;
    }

    /**
     * Processes the ContainerBuilder to remove unused definitions.
     *
     * @param ContainerBuilder $container
     */
    public function process(ContainerBuilder $container)
    {
        $compiler = $container->getCompiler();
        $formatter = $compiler->getLoggingFormatter();
        $graph = $compiler->getServiceReferenceGraph();

        $hasChanged = false;
        foreach ($container->getDefinitions() as $id => $definition) {
            if ($definition->isPublic()) {
                continue;
            }

            if ($graph->hasNode($id)) {
                $edges = $graph->getNode($id)->getInEdges();
                $referencingAliases = array();
                $sourceIds = array();
                foreach ($edges as $edge) {
                    $node = $edge->getSourceNode();
                    $sourceIds[] = $node->getId();

                    if ($node->isAlias()) {
                        $referencingAliases[] = $node->getValue();
                    }
                }
                $isReferenced = (count(array_unique($sourceIds)) - count($referencingAliases)) > 0;
            } else {
                $referencingAliases = array();
                $isReferenced = false;
            }

            if (1 === count($referencingAliases) && false === $isReferenced) {
                $container->setDefinition((string) reset($referencingAliases), $definition);
                $definition->setPublic(true);
                $container->removeDefinition($id);
                $compiler->addLogMessage($formatter->formatRemoveService($this, $id, 'replaces alias '.reset($referencingAliases)));
            } elseif (0 === count($referencingAliases) && false === $isReferenced) {
                $container->removeDefinition($id);
                $compiler->addLogMessage($formatter->formatRemoveService($this, $id, 'unused'));
                $hasChanged = true;
            }
        }

        if ($hasChanged) {
            $this->repeatedPass->setRepeat();
        }
    }
}

Directory Contents

Dirs: 0 × Files: 24

Name Size Perms Modified Actions
4.41 KB lrw-r--r-- 2019-12-18 11:20:40
Edit Download
2.36 KB lrw-r--r-- 2019-12-18 11:20:40
Edit Download
3.60 KB lrw-r--r-- 2019-12-18 11:20:40
Edit Download
2.05 KB lrw-r--r-- 2019-12-18 11:20:40
Edit Download
5.50 KB lrw-r--r-- 2019-12-18 11:20:40
Edit Download
2.55 KB lrw-r--r-- 2019-12-18 11:20:40
Edit Download
746 B lrw-r--r-- 2019-12-18 11:20:40
Edit Download
4.48 KB lrw-r--r-- 2019-12-18 11:20:40
Edit Download
1.43 KB lrw-r--r-- 2019-12-18 11:20:40
Edit Download
1.84 KB lrw-r--r-- 2019-12-18 11:20:40
Edit Download
5.90 KB lrw-r--r-- 2019-12-18 11:20:40
Edit Download
1.04 KB lrw-r--r-- 2019-12-18 11:20:40
Edit Download
1.24 KB lrw-r--r-- 2019-12-18 11:20:40
Edit Download
2.71 KB lrw-r--r-- 2019-12-18 11:20:40
Edit Download
691 B lrw-r--r-- 2019-12-18 11:20:40
Edit Download
2.03 KB lrw-r--r-- 2019-12-18 11:20:40
Edit Download
4.07 KB lrw-r--r-- 2019-12-18 11:20:40
Edit Download
5.42 KB lrw-r--r-- 2019-12-18 11:20:40
Edit Download
3.42 KB lrw-r--r-- 2019-12-18 11:20:40
Edit Download
2.11 KB lrw-r--r-- 2019-12-18 11:20:40
Edit Download
2.83 KB lrw-r--r-- 2019-12-18 11:20:40
Edit Download
2.79 KB lrw-r--r-- 2019-12-18 11:20:40
Edit Download
1.48 KB lrw-r--r-- 2019-12-18 11:20:40
Edit Download
2.49 KB lrw-r--r-- 2019-12-18 11:20:40
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).