Skip to content

Commit 35be860

Browse files
committed
Run phpstan without --xdebug
1 parent 94df971 commit 35be860

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565

6666
- name: PHPStan
6767
run:
68-
vendor/bin/phpstan analyse --xdebug -vvv
68+
vendor/bin/phpstan analyse -vvv
6969

7070
- name: PHPUnit
7171
env:

.gitlab-ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ test:php:
2828
- composer normalize --dry-run --indent-size=4 --indent-style=space
2929
- vendor/bin/php-cs-fixer fix --diff --dry-run --verbose
3030
- vendor/bin/phpmd src xml phpmd.xml
31-
- vendor/bin/phpstan analyse --xdebug -vvv
31+
- vendor/bin/phpstan analyse -vvv
3232
- vendor/bin/phpunit --colors=never
3333
- phpdoc
3434
artifacts:

ci-test.sh

+1-1
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)