8000 Merge branch 'hotfix/91' · zendframework/zend-stdlib@818a81c · 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.

Commit 818a81c

Browse files
committed
Merge branch 'hotfix/91'
Close #91
2 parents 7c7663c + f2e16f0 commit 818a81c

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,9 @@ matrix:
5454
- php: 7.2
5555
env:
5656
- DEPS=latest
57+
- php: nightly
58+
env:
59+
- DEPS=latest
5760

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

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ All notable changes to this project will be documented in this file, in reverse
2222

2323
### Fixed
2424

25-
- Nothing.
25+
- [#91](https://github.com/zendframework/zend-stdlib/pull/91) fixes behavior in the `ArrayObject` implementation that was not
26+
compatible with PHP 7.3.
2627

2728
## 3.2.0 - 2018-04-30
2829

src/ArrayObject.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,7 @@ public function unserialize($data)
425425
$this->setIteratorClass($v);
426426
break;
427427
case 'protectedProperties':
428-
continue;
428+
break;
429429
default:
430430
$this->__set($k, $v);
431431
}

0 commit comments

Comments
 (0)
0