Skip to content

Commit ce5b0e8

Browse files
committed
Run phpstan without --xdebug
1 parent 1a58f34 commit ce5b0e8

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
@@ -45,7 +45,7 @@ jobs:
4545

4646
- name: PHPStan
4747
run:
48-
vendor/bin/phpstan analyse --xdebug -vvv
48+
vendor/bin/phpstan analyse -vvv
4949

5050
- name: PHPUnit
5151
run: vendor/bin/phpunit --verbose

.gitlab-ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ test:php:
2121
- composer normalize --dry-run --indent-size=4 --indent-style=space
2222
- vendor/bin/php-cs-fixer fix --diff --dry-run --verbose
2323
- vendor/bin/phpmd src xml phpmd.xml
24-
- vendor/bin/phpstan analyse --xdebug -vvv
24+
- vendor/bin/phpstan analyse -vvv
2525
- vendor/bin/phpunit --colors=never
2626
- phpdoc
2727
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)