14 lines
238 B
Plaintext
14 lines
238 B
Plaintext
|
|
--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
|