Chris@0: Chris@0: * Chris@0: * For the full copyright and license information, please view the LICENSE Chris@0: * file that was distributed with this source code. Chris@0: */ Chris@0: Chris@0: namespace Symfony\Component\DependencyInjection\Extension; Chris@0: Chris@0: use Symfony\Component\DependencyInjection\ContainerBuilder; Chris@0: Chris@0: interface PrependExtensionInterface Chris@0: { Chris@0: /** Chris@0: * Allow an extension to prepend the extension configurations. Chris@0: */ Chris@0: public function prepend(ContainerBuilder $container); Chris@0: }