<?php
declare(strict_types=1);
/**
* Controller.php File.
* This file is part of the Payment.net Project.
*
* PHP version 5
*
* @category Admin
* @package Bdm\AdminBundle\Controller
* @author Helen Tochko <htochko@bdmultimedia.fr>
* @link http://www.payment.net/
*
* FEATURES :
* ==========
* Controller for admin dashboard
*
* TODO-LIST :
* ===========
*
* HISTORY :
* =========
* 20150317 - Helen Tochko: creating di class
*
**/
namespace Bdm\AdminBundle\Controller\Web;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
/**
* Class DefaultController
*/
class DefaultController extends AbstractController
{
/**
* Admin back office page
*
* @return Response
*/
public function indexAction()
{
return $this->render('@BdmAdmin/Default/index.html.twig');
}
}