<?php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\Routing\Annotation\Route;
/**
* @Route("/about", name="app_rms_about")
*/
class AboutController extends AbstractController
{
public function __invoke()
{
return $this->render('pages/about.html.twig');
}
}