Skip to content
Snippets Groups Projects
Select Git revision
  • 0adcbd7d04ee1563d4c848d973ac0cb81a2c49e6
  • master default
2 results

NotificationController.php

Blame
  • user avatar
    Jeremy Guiselin authored
    0adcbd7d
    History
    NotificationController.php 363 B
    <?php
    /**
     * Created by PhpStorm.
     * User: jeremyguiselin
     * Date: 23/09/2016
     * Time: 08:22
     */
    
    namespace BackendBundle\Controller;
    
    use Symfony\Bundle\FrameworkBundle\Controller\Controller;
    
    class NotificationController extends Controller
    {
    
        public function indexAction()
        {
            return $this->render('@Backend/notification/index.html.twig');
        }
    }