<?phpnamespace BCA\APIM;use BCA\APIM\DependencyInjection\BCAAPIMExtension;use Symfony\Component\HttpKernel\Bundle\Bundle;/** * Entry point for BCAAPIMBundle * * @package BCA\APIM */class BCAAPIMBundle extends Bundle{ /** * This method removes the security check on bundle alias * * @return mixed */ public function getContainerExtension() { if (null === $this->extension) { $this->extension = new BCAAPIMExtension(); } return $this->extension; }}