Skip to content
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/45'
Browse files Browse the repository at this point in the history
Close #45
  • Loading branch information
Xerkus committed Oct 15, 2018
2 parents b863e67 + 4ecb2f6 commit a6332a3
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
9 changes: 9 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion src/Transfer/Adapter/AbstractAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,7 @@ public function setOptions($options = [], $files = null)
break;

default:
continue;
break;
}
}
}
Expand Down

0 comments on commit a6332a3

Please sign in to comment.