From 4ec6954707ea91ea36460d219eaf6dbcc5c688b3 Mon Sep 17 00:00:00 2001 From: nkondrashov Date: Tue, 13 Feb 2024 15:04:15 +0300 Subject: [PATCH] Fix annotation-paths for yii-swagger in params.php --- config/params.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/params.php b/config/params.php index e5f6480..b6c42ba 100644 --- a/config/params.php +++ b/config/params.php @@ -37,8 +37,8 @@ ], 'yiisoft/yii-swagger' => [ 'annotation-paths' => [ - dirname(__DIR__) . '/src/Controller', - dirname(__DIR__) . '/src/Middleware', + dirname(__DIR__) . '/src/Debug/Controller', + dirname(__DIR__) . '/src/Debug/Middleware', ], ], ];