Skip to content

Commit

Permalink
Merge pull request #1955 from nWidart/add-generate-code-coverage-to-p…
Browse files Browse the repository at this point in the history
…hpunit-support

corrected app_folder path for updating phpunit
  • Loading branch information
dcblogdev authored Sep 22, 2024
2 parents 9d015f0 + 4b04b6f commit fb1f6bd
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 fb1f6bd

Please sign in to comment.