Skip to content

Commit

Permalink
Fix tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
dim-s committed Mar 11, 2020
1 parent 9f5be84 commit fcdac13
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ function __call() {
?>
--EXPECTF--

Fatal error: Declaration of Test::__call() should be compatible with Object::__call($name, $arguments) in %s on line %d, position %d
Fatal error: Declaration of Test::__call() should be compatible with Object::__call(string $name, array $arguments) in %s on line %d, position %d
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ function __get($x,$y) {
?>
--EXPECTF--

Fatal error: Declaration of Test::__get($x, $y) should be compatible with Object::__get($property) in %s on line %d, position %d
Fatal error: Declaration of Test::__get($x, $y) should be compatible with Object::__get(string $property) in %s on line %d, position %d
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ function __set() {
?>
--EXPECTF--

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

0 comments on commit fcdac13

Please sign in to comment.