diff --git a/.travis.yml b/.travis.yml index 2711c4c1..f40b5c20 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,6 +3,7 @@ language: php php: - 7.2 - 7.3 + - 7.4 sudo: false @@ -29,25 +30,25 @@ matrix: fast_finish: true include: - stage: lint - php: 7.3 + php: 7.4 env: TARGET=lint - stage: lint - php: 7.3 + php: 7.4 env: TARGET=phpstan - stage: lint - php: 7.3 + php: 7.4 env: TARGET=checkdeps - stage: test php: 7.2 env: COMPOSER_FLAGS="--prefer-lowest" - stage: test - php: 7.3 + php: 7.4 env: SYMFONY_VERSION=3.4.* - stage: test - php: 7.3 + php: 7.4 env: SYMFONY_VERSION=4.2.* allow_failures: - - php: 7.3 + - php: 7.4 env: TARGET=checkdeps before_install: diff --git a/phpstan.neon.dist b/phpstan.neon.dist index 65564e34..a82090df 100644 --- a/phpstan.neon.dist +++ b/phpstan.neon.dist @@ -23,3 +23,8 @@ parameters: message: '#Property .*::\$.* has no typehint specified.#' path: tests/ + - + message: "#^Call to an undefined method Symfony\\\\Component\\\\Config\\\\Definition\\\\Builder\\\\TreeBuilder::root\\(\\)\\.$#" + count: 1 + path: src/DependencyInjection/Configuration.php +