interface foo {
public function myFunction();
}class foobar implements foo {
public function myFunction($someText)
{
echo $someText;
}
}$myObj = new foobar();
$myObj->myFunction('Testing, 1, 2, 3');This code works. To me it should flag an error or, at least a warning, no? I can see the flexibility of allowing this as it provides a kind-of form of overloading but I want to make sure this behaves as intended before I make use of this feature/bug.
--Tony
-- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php
