mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-13 12:33:52 +01:00
6ff80ba037
[DeadCode] Skip RemoveUnusedNonEmptyArrayBeforeForeachRector on native Variable (#748)
59 lines
1.7 KiB
PHP
59 lines
1.7 KiB
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 RectorPrefix20210824\Symfony\Component\Console\CommandLoader;
|
|
|
|
use RectorPrefix20210824\Psr\Container\ContainerInterface;
|
|
use RectorPrefix20210824\Symfony\Component\Console\Exception\CommandNotFoundException;
|
|
/**
|
|
* Loads commands from a PSR-11 container.
|
|
*
|
|
* @author Robin Chalas <robin.chalas@gmail.com>
|
|
*/
|
|
class ContainerCommandLoader implements \RectorPrefix20210824\Symfony\Component\Console\CommandLoader\CommandLoaderInterface
|
|
{
|
|
private $container;
|
|
private $commandMap;
|
|
/**
|
|
* @param array $commandMap An array with command names as keys and service ids as values
|
|
*/
|
|
public function __construct(\RectorPrefix20210824\Psr\Container\ContainerInterface $container, array $commandMap)
|
|
{
|
|
$this->container = $container;
|
|
$this->commandMap = $commandMap;
|
|
}
|
|
/**
|
|
* {@inheritdoc}
|
|
* @param string $name
|
|
*/
|
|
public function get($name)
|
|
{
|
|
if (!$this->has($name)) {
|
|
throw new \RectorPrefix20210824\Symfony\Component\Console\Exception\CommandNotFoundException(\sprintf('Command "%s" does not exist.', $name));
|
|
}
|
|
return $this->container->get($this->commandMap[$name]);
|
|
}
|
|
/**
|
|
* {@inheritdoc}
|
|
* @param string $name
|
|
*/
|
|
public function has($name)
|
|
{
|
|
return isset($this->commandMap[$name]) && $this->container->has($this->commandMap[$name]);
|
|
}
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function getNames()
|
|
{
|
|
return \array_keys($this->commandMap);
|
|
}
|
|
}
|