src/Controller/ImprintController.php line 13

  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Controller;
  4. use App\Entity\JobOffer;
  5. use App\Repository\JobOfferRepository;
  6. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  7. use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
  8. use Symfony\Component\Routing\Annotation\Route;
  9. class ImprintController extends AbstractController
  10. {
  11.     #[Route(path'/imprint'name'app_imprint')]
  12.     public function __invoke()
  13.     {
  14.         return $this->render('job/imprint.html.twig', []);
  15.     }
  16. }