<?php
namespace App\Controller;
use App\Entity\Project;
use App\Entity\User;
use Psr\Log\LoggerInterface;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
use Symfony\Component\HttpFoundation\Request;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\IsGranted;
class PrivacyController extends AbstractController
{
/**
* @Route("/privacy", name="privacy")
* @param Request $request
* @return Response
*/
public function home(Request $request)
{
return $this->render('privacy.html.twig', array(
));
}
}