src/AppBundle/Controller/DefaultController.php line 14

Open in your IDE?
  1. <?php
  2. namespace AppBundle\Controller;
  3. use Symfony\Bundle\FrameworkBundle\Controller\Controller;
  4. use Symfony\Component\HttpFoundation\Request;
  5. use Symfony\Component\Routing\Annotation\Route;
  6. class DefaultController extends Controller
  7. {
  8.     /**
  9.      * @Route("/", name="default")
  10.      */
  11.     public function indexAction(Request $request)
  12.     {
  13.         return $this->redirectToRoute('area');
  14.     }
  15.     
  16. }