src/Application/Front/Controller/ProcessController.php line 22
<?phpdeclare(strict_types=1);namespace App\Application\Front\Controller;use App\Application\Front\Manager\PostTagManager;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\HttpFoundation\RedirectResponse;use Symfony\Component\HttpFoundation\Request;use Symfony\Component\HttpFoundation\Response;use Symfony\Component\Routing\Annotation\Route;class ProcessController extends AbstractController{public function __construct(private readonly PostTagManager $postTagManager,) {}#[Route('/processus', name: 'process')]public function index(Request $request): Response{$manifestos = ['learning_by_doing','technology_is_a_tool','accessibility','open_knowledge','remix_everything','have_fun','do_it_together','free_software','reuse','distributed_networks','agility',];return $this->render('frontend/process/process.html.twig', ['manifestos' => $manifestos,])->setSharedMaxAge(3600);}}