<?phpnamespace App\Controller;use App\Kernel;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\HttpFoundation\Response;class VersionController extends AbstractController{ public function information(): Response { return $this->render('pages/common/version.html.twig', ['releaseVersion' => $this->getParameter('app_version')]); }}