You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

24 lines
434 B

--TEST--
method overloading with different method signature
--INI--
error_reporting=8191
--FILE--
<?php
class test {
function foo($arg, &$arg2 = NULL) {}
}
class test2 extends test {
function foo($arg, &$arg2 = NULL) {}
}
class test3 extends test {
function foo($arg, &$arg2) {}
}
echo "Done\n";
?>
--EXPECTF--
Strict Standards: Declaration of test3::foo() should be compatible with that of test::foo() in %s on line %d
Done