Skip to content

Commit

Permalink
fix(task runners): removed the xdebug option of PHPStan
Browse files Browse the repository at this point in the history
  • Loading branch information
COil committed Oct 21, 2023
1 parent d50e959 commit 7e8b4a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ cov-report: ## Open the PHPUnit code coverage report (var/coverage/index.html)

## —— Coding standards/lints ✨ ————————————————————————————————————————————————
stan: ## Run PHPStan
@vendor/bin/phpstan analyse -c phpstan.neon --memory-limit 1G -vvv --xdebug
@vendor/bin/phpstan analyse -c phpstan.neon --memory-limit 1G -vvv

fix-php: ## Fix PHP files with php-cs-fixer (ignore PHP 8.2 warning)
@PHP_CS_FIXER_IGNORE_ENV=1 vendor/bin/php-cs-fixer fix --allow-risky=yes
Expand Down
2 changes: 1 addition & 1 deletion castor.php
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ function cov_report(): void
function stan(): void
{
title(__FUNCTION__, get_command());
run('vendor/bin/phpstan analyse -c phpstan.neon --memory-limit 1G -vvv --xdebug', quiet: false);
run('vendor/bin/phpstan analyse -c phpstan.neon --memory-limit 1G -vvv', quiet: false);
success();
}

Expand Down

0 comments on commit 7e8b4a7

Please sign in to comment.