blob: 3562189c344a30fb52f05364eb1b9380771f90e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--TEST--
Testing __toString() declaration with wrong modifier
--FILE--
<?php
class a {
static protected function __toString($a, $b) {
}
}
?>
--EXPECTF--
Fatal error: Method a::__toString() cannot take arguments in %s on line %d
|