/usr/share/php/Symfony/Component/DependencyInjection/Extension
NameSizeModeActions
ConfigurationExtensionInterface.php8080644editdlrm
Extension.php41120644editdlrm
ExtensionInterface.php12740644editdlrm
PrependExtensionInterface.php5400644editdlrm
Edit: /usr/share/php/Symfony/Component/DependencyInjection/Extension/ConfigurationExtensionInterface.php (808B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\DependencyInjection\Extension; use Symfony\Component\Config\Definition\ConfigurationInterface; use Symfony\Component\DependencyInjection\ContainerBuilder; /** * ConfigurationExtensionInterface is the interface implemented by container extension classes. * * @author Kevin Bond */ interface ConfigurationExtensionInterface { /** * Returns extension configuration. * * @return ConfigurationInterface|null */ public function getConfiguration(array $config, ContainerBuilder $container); }