8000 php 7.3 compat: continue targeting switch equaivalent to break; by samsonasik · Pull Request #91 · zendframework/zend-stdlib · GitHub
[go: up one dir, main page]

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

php 7.3 compat: continue targeting switch equaivalent to break; #91

Merged
merged 3 commits into from
Aug 28, 2018
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
8000 Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,9 @@ matrix:
- php: 7.2
env:
- DEPS=latest
- php: nightly
env:
- DEPS=latest

before_install:
- if [[ $TEST_COVERAGE != 'true' ]]; then phpenv config-rm xdebug.ini || return 0 ; fi
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ All notable changes to this project will be documented in this file, in reverse

### Fixed

- Nothing.
- [#91](https://github.com/zendframework/zend-stdlib/pull/91) php 7.3 compatible which the behaviour of continue targeting switch equaivalent to break.

## 3.2.0 - 2018-04-30

Expand Down
2 changes: 1 addition & 1 deletion src/ArrayObject.php
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ public function unserialize($data)
$this->setIteratorClass($v);
break;
case 'protectedProperties':
continue;
continue 2;
default:
$this->__set($k, $v);
}
Expand Down
0