From 2f90f4722114f95f2357505dd3f506a8ec278bc4 Mon Sep 17 00:00:00 2001 From: Sander De la Marche Date: Fri, 20 May 2022 16:57:31 +0200 Subject: [PATCH] Fix path in rpevious config fix --- src/Skeleton/PostCreateProject.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Skeleton/PostCreateProject.php b/src/Skeleton/PostCreateProject.php index ba3b917..013ebda 100644 --- a/src/Skeleton/PostCreateProject.php +++ b/src/Skeleton/PostCreateProject.php @@ -424,7 +424,7 @@ private static function reconfigureApplication(Event $event): void $offset, "\n" . implode("\n", $insert) ); - file_put_contents($projectDir . '/config/routes/annotations.yaml', $content); + file_put_contents($projectDir . '/config/routes.yaml', $content); $io->notice('→ Reconfigure framework'); $content = file_get_contents($projectDir . '/config/packages/framework.yaml');