Skip to content

Commit

Permalink
corrected app_folder path for updating phpunit
Browse files Browse the repository at this point in the history
  • Loading branch information
dcblogdev committed Sep 22, 2024
1 parent df22b41 commit 4b04b6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Commands/UpdatePhpunitCoverage.php
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down

0 comments on commit 4b04b6f

Please sign in to comment.