twig = $twig; $this->urlGenerator = $urlGenerator; } public static function create(Application $app) { $urlGenerator = $app['url_generator']; $twig = $app['twig']; return new static($urlGenerator, $twig); } public function build() { $home = $this->urlGenerator->generate('homepage'); $blog = $this->urlGenerator->generate('blog_list'); $result = [ 'home' => ['url' => $home, 'text' => 'Accueil'], 'blog' => ['url' => $blog, 'text' => 'Blogs'], ]; return $result; } }