FunctionCallback.php in Zircon Profile 8
Same filename and directory in other branches
File
vendor/phpunit/phpunit-mock-objects/tests/_fixture/FunctionCallback.phpView source
<?php
function functionCallback() {
$args = func_get_args();
if ($args == array(
'foo',
'bar',
)) {
return 'pass';
}
}
Functions
Name | Description |
---|---|
functionCallback |