Update MarkdownBundle->buildContainer signature

This commit is contained in:
ornicar 2010-07-13 14:34:16 +02:00
parent f69eade0c2
commit 8f8693d911

View file

@ -4,13 +4,13 @@ namespace Bundle\MarkdownBundle;
use Bundle\MarkdownBundle\DependencyInjection\MarkdownExtension;
use Symfony\Framework\Bundle\Bundle as BaseBundle;
use Symfony\Components\DependencyInjection\ContainerInterface;
use Symfony\Components\DependencyInjection\ParameterBag\ParameterBagInterface;
use Symfony\Components\DependencyInjection\Loader\Loader;
class MarkdownBundle extends BaseBundle
{
public function buildContainer(ContainerInterface $container)
public function buildContainer(ParameterBagInterface $parameterBag)
{
Loader::registerExtension(new MarkdownExtension());
}