Skip to content

Commit a904fae

Browse files
committed
Revert "No PHPStan in PHP 7.2"
This reverts commit 6c3a206.
1 parent 0505146 commit a904fae

File tree

2 files changed

+7
-15
lines changed

2 files changed

+7
-15
lines changed

.travis.yml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@ language: php
22
matrix:
33
include:
44
- php: 7.0
5-
env: DEPENDENCIES=lowest PHPSTAN=yes
5+
env: DEPENDENCIES=lowest
66
- php: 7.0
7-
env: DEPENDENCIES=highest PHPSTAN=yes
7+
env: DEPENDENCIES=highest
88
- php: 7.1
9-
env: DEPENDENCIES=lowest PHPSTAN=yes
9+
env: DEPENDENCIES=lowest
1010
- php: 7.1
11-
env: DEPENDENCIES=highest PHPSTAN=yes
11+
env: DEPENDENCIES=highest
1212
- php: master
13-
env: DEPENDENCIES=lowest PHPSTAN=no
13+
env: DEPENDENCIES=lowest
1414
- php: master
15-
env: DEPENDENCIES=highest PHPSTAN=yes
15+
env: DEPENDENCIES=highest
1616
cache:
1717
directories:
1818
- $HOME/.composer/cache
@@ -21,8 +21,7 @@ before_script:
2121
- if [ "${DEPENDENCIES}" = "lowest" ]; then composer update --prefer-lowest --prefer-dist --no-interaction --no-progress; fi;
2222
- if [ "${DEPENDENCIES}" = "highest" ]; then composer update --prefer-dist --no-interaction --no-progress; fi;
2323
script:
24-
- if [ "${PHPSTAN}" = "yes" ]; then bin/phing; fi;
25-
- if [ "${PHPSTAN}" = "no" ]; then bin/phing check-without-phpstan; fi;
24+
- bin/phing
2625
after_script:
2726
- if [ "${TRAVIS_ALLOW_FAILURE}" = false ]; then
2827
wget https://github.com/satooshi/php-coveralls/releases/download/v1.0.0/coveralls.phar

build.xml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,6 @@
99
phpstan
1010
"/>
1111

12-
<target name="check-without-phpstan" depends="
13-
composer,
14-
lint,
15-
cs,
16-
tests
17-
"/>
18-
1912
<target name="composer">
2013
<exec
2114
executable="composer"

0 commit comments

Comments
 (0)