flashService = $flashService; } public function getFunctions(): array { return [ new \Twig_SimpleFunction('flash', [$this, 'getFlash']) ]; } public function getFlash($type): ?string { return $this->flashService->get($type); } }