From 4b04b6f9b00985fe1932ee6c46452cdc494921aa Mon Sep 17 00:00:00 2001 From: David Carr Date: Sun, 22 Sep 2024 21:01:30 +0100 Subject: [PATCH] corrected app_folder path for updating phpunit --- src/Commands/UpdatePhpunitCoverage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Commands/UpdatePhpunitCoverage.php b/src/Commands/UpdatePhpunitCoverage.php index 79d0cbf2..858e7124 100644 --- a/src/Commands/UpdatePhpunitCoverage.php +++ b/src/Commands/UpdatePhpunitCoverage.php @@ -28,7 +28,7 @@ class UpdatePhpunitCoverage extends Command */ public function handle(): int { - $appFolder = config('modules.app_folder', 'app/'); + $appFolder = config('modules.paths.app_folder', 'app/'); $appFolder = rtrim($appFolder, '/') . '/'; $phpunitXmlPath = base_path('phpunit.xml'); $modulesStatusPath = base_path('modules_statuses.json');