From a536b0e970b23fec5f82966afd5134ea0cb8f95a Mon Sep 17 00:00:00 2001 From: ADmad Date: Fri, 29 Sep 2017 11:56:17 +0530 Subject: [PATCH] Remove phpstan error as issue is fixed in core. --- .travis.yml | 2 +- phpstan.neon | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) delete mode 100644 phpstan.neon diff --git a/.travis.yml b/.travis.yml index b5457d77..8d1c3b24 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,7 +16,7 @@ before_script: script: - if [[ $PHPCS = 1 ]]; then vendor/bin/phpcs -p --extensions=php --standard=vendor/cakephp/cakephp-codesniffer/CakePHP src/ config/; fi - - if [[ $PHPSTAN = 1 ]]; then vendor/bin/phpstan analyse -c phpstan.neon -l 5 src; fi + - if [[ $PHPSTAN = 1 ]]; then vendor/bin/phpstan analyse -l 5 src; fi notifications: email: false diff --git a/phpstan.neon b/phpstan.neon deleted file mode 100644 index 5771b040..00000000 --- a/phpstan.neon +++ /dev/null @@ -1,3 +0,0 @@ -parameters: - ignoreErrors: - - '#Property Cake\\View\\View::\$subDir \(string\) does not accept null#'