blob: ae2572f7bc0b999b694d70fd042737e9b46716f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--TEST--
errmsg: multiple access type modifiers are not allowed (methods)
--FILE--
<?php
class test {
private protected function foo() {}
}
echo "Done\n";
?>
--EXPECTF--
Fatal error: Multiple access type modifiers are not allowed in %s on line %d
|