rector/vendor/symfony/dependency-injection/Extension/ConfigurationExtensionInterface.php
Tomas Votruba 47d722993a Updated Rector to commit ae96c1a30812389737385b63ca9c79f8ab1d876e
ae96c1a308 Skip FormatPerservingPrinterTest on windows (#109)
2021-05-26 10:17:03 +00:00

29 lines
955 B
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 RectorPrefix20210526\Symfony\Component\DependencyInjection\Extension;
use RectorPrefix20210526\Symfony\Component\Config\Definition\ConfigurationInterface;
use RectorPrefix20210526\Symfony\Component\DependencyInjection\ContainerBuilder;
/**
* ConfigurationExtensionInterface is the interface implemented by container extension classes.
*
* @author Kevin Bond <kevinbond@gmail.com>
*/
interface ConfigurationExtensionInterface
{
/**
* Returns extension configuration.
*
* @return ConfigurationInterface|null The configuration or null
*/
public function getConfiguration(array $config, \RectorPrefix20210526\Symfony\Component\DependencyInjection\ContainerBuilder $container);
}