gateway = $gateway; $this->twig = $twig; } public function displayError($error) { $error = array("error" => $error); try { echo $this->twig->render('error.html.twig', $error); } catch (LoaderError | RuntimeError | SyntaxError $e) { echo "Twig error: $e"; } } }