src/Controller/ContactController.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Controller;
  3. use App\Entity\Post;
  4. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  5. use Symfony\Component\Routing\Annotation\Route;
  6. class ContactController extends AbstractController
  7. {
  8.     
  9.     public function index()
  10.     {
  11.         
  12.         return $this->render('contact/index.html.twig');
  13.     }
  14. }