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

Commit 18918fc

Browse files
committed
Merge branch 'hotfix/45' into develop
Forward port #45
2 parents 4368087 + 4ecb2f6 commit 18918fc

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

.travis.yml

+9
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,15 @@ matrix:
5353
- php: 7.2
5454
env:
5555
- DEPS=latest
56+
- php: 7.3
57+
env:
58+
- DEPS=lowest
59+
- php: 7.3
60+
env:
61+
- DEPS=locked
62+
- php: 7.3
63+
env:
64+
- DEPS=latest
5665

5766
before_install:
5867
- if [[ $TEST_COVERAGE != 'true' ]]; then phpenv config-rm xdebug.ini || return 0 ; fi

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ All notable changes to this project will be documented in this file, in reverse
4444

4545
### Fixed
4646

47-
- Nothing.
47+
- [#45](https://github.com/zendframework/zend-file/pull/45) fixes compatibility
48+
issue with php 7.3 with deprecated continue keyword usage in switch statements
4849

4950
## 2.8.1 - 2018-05-01
5051

src/Transfer/Adapter/AbstractAdapter.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -545,7 +545,7 @@ public function setOptions($options = [], $files = null)
545545
break;
546546

547547
default:
548-
continue;
548+
break;
549549
}
550550
}
551551
}

0 commit comments

Comments
 (0)