Skip to content

Commit 64753a1

Browse files
committed
Run phpstan without --xdebug
1 parent e36d36e commit 64753a1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656

5757
- name: PHPStan
5858
run:
59-
vendor/bin/phpstan analyse --xdebug -vvv
59+
vendor/bin/phpstan analyse -vvv
6060

6161
- name: PHPUnit
6262
env:

.gitlab-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ test:php:
2727
- composer normalize --dry-run --indent-size=4 --indent-style=space
2828
- vendor/bin/php-cs-fixer fix --diff --dry-run --verbose
2929
- vendor/bin/phpmd src xml phpmd.xml
30-
- vendor/bin/phpstan analyse --xdebug -vvv
30+
- vendor/bin/phpstan analyse -vvv
3131
- vendor/bin/phpunit --colors=never
3232
- phpdoc
3333
artifacts:

ci-test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ commands=(
66
"composer normalize --dry-run --indent-size=4 --indent-style=space"
77
"vendor/bin/php-cs-fixer fix --diff --dry-run --verbose"
88
"vendor/bin/phpmd src xml phpmd.xml"
9-
"vendor/bin/phpstan analyse --xdebug -vvv"
9+
"vendor/bin/phpstan analyse -vvv"
1010
"vendor/bin/phpunit"
1111
"phpdoc"
1212
)

0 commit comments

Comments
 (0)