for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Main bundle of the app
*
* PHP Version 5
* @category Symfony
* @package Chrl_Buktopuha
* @author Kirill Kholodilin <[email protected]>
* @license http://www.gnu.org/copyleft/gpl.html GNU General Public License
* @link https://take2.ru/
*/
namespace Chrl\AppBundle;
use Chrl\AppBundle\DependencyInjection\BuktopuhaExtension;
use Symfony\Component\HttpKernel\Bundle\Bundle;
* Bundle class
* @class AppBundle
class AppBundle extends Bundle
{
public function getContainerExtension()
return new BuktopuhaExtension();
}