<?php
namespace Sogec\BOBundle;
use Symfony\Component\HttpKernel\Bundle\Bundle;
class SogecBOBundle extends Bundle
{
public function getContainerExtension()
{
if (null === $this->extension)
{
$extension = $this->createContainerExtension();
if (null !== $extension)
$this->extension = $extension;
else
$this->extension = false;
}
if ($this->extension)
{
return $this->extension;
}
}
}