diff --git a/.travis.yml b/.travis.yml index 2fb1fd4..2f096db 100644 --- a/.travis.yml +++ b/.travis.yml @@ -53,6 +53,15 @@ matrix: - php: 7.2 env: - DEPS=latest + - php: 7.3 + env: + - DEPS=lowest + - php: 7.3 + env: + - DEPS=locked + - php: 7.3 + env: + - DEPS=latest before_install: - if [[ $TEST_COVERAGE != 'true' ]]; then phpenv config-rm xdebug.ini || return 0 ; fi diff --git a/CHANGELOG.md b/CHANGELOG.md index ac84966..69dbccb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,7 +22,8 @@ All notable changes to this project will be documented in this file, in reverse ### Fixed -- Nothing. +- [#45](https://github.com/zendframework/zend-file/pull/45) fixes compatibility + issue with php 7.3 with deprecated continue keyword usage in switch statements ## 2.8.1 - 2018-05-01 diff --git a/src/Transfer/Adapter/AbstractAdapter.php b/src/Transfer/Adapter/AbstractAdapter.php index bc90dfe..48b615d 100644 --- a/src/Transfer/Adapter/AbstractAdapter.php +++ b/src/Transfer/Adapter/AbstractAdapter.php @@ -545,7 +545,7 @@ public function setOptions($options = [], $files = null) break; default: - continue; + break; } } }