From e8b6dfc9ec4e4a19830f4af1f54a4df0c4c007ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Owsiak?= Date: Wed, 7 Feb 2024 18:39:12 +0200 Subject: [PATCH] landing page cs fix (#973) --- .../src/Flow/Website/Controller/DefaultController.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/web/landing/src/Flow/Website/Controller/DefaultController.php b/web/landing/src/Flow/Website/Controller/DefaultController.php index 0aa38bb2b..52be75097 100644 --- a/web/landing/src/Flow/Website/Controller/DefaultController.php +++ b/web/landing/src/Flow/Website/Controller/DefaultController.php @@ -38,11 +38,11 @@ public function example(string $topic, string $example) : Response #[Route('/', name: 'main')] public function main() : Response { -// TODO: uncomment and remove below code when frontpage features will be available -// return $this->render('main/index.html.twig', [ -// 'contributors' => $this->github->contributors(), -// 'topics' => $this->examples->topics(), -// ]); + // TODO: uncomment and remove below code when frontpage features will be available + // return $this->render('main/index.html.twig', [ + // 'contributors' => $this->github->contributors(), + // 'topics' => $this->examples->topics(), + // ]); $topics = $this->examples->topics(); $currentTopic = \current($topics);