Skip to content

Commit fcdac13

Browse files
committed
Fix tests.
1 parent 9f5be84 commit fcdac13

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

exts/jphp-zend-ext/src/main/tests/resources/zend/classes/__call_002.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ function __call() {
1313
?>
1414
--EXPECTF--
1515

16-
Fatal error: Declaration of Test::__call() should be compatible with Object::__call($name, $arguments) in %s on line %d, position %d
16+
Fatal error: Declaration of Test::__call() should be compatible with Object::__call(string $name, array $arguments) in %s on line %d, position %d

exts/jphp-zend-ext/src/main/tests/resources/zend/classes/__set__get_002.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ function __get($x,$y) {
1212
?>
1313
--EXPECTF--
1414

15-
Fatal error: Declaration of Test::__get($x, $y) should be compatible with Object::__get($property) in %s on line %d, position %d
15+
Fatal error: Declaration of Test::__get($x, $y) should be compatible with Object::__get(string $property) in %s on line %d, position %d

exts/jphp-zend-ext/src/main/tests/resources/zend/classes/__set__get_003.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ function __set() {
1212
?>
1313
--EXPECTF--
1414

15-
Fatal error: Declaration of Test::__set() should be compatible with Object::__set($property, $value) in %s on line %d, position %d
15+
Fatal error: Declaration of Test::__set() should be compatible with Object::__set(string $property, $value) in %s on line %d, position %d

0 commit comments

Comments
 (0)