public static function MethodCallback::staticCallback in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpunit/phpunit-mock-objects/tests/_fixture/MethodCallback.php \MethodCallback::staticCallback()
File
- vendor/
phpunit/ phpunit-mock-objects/ tests/ _fixture/ MethodCallback.php, line 4
Class
Code
public static function staticCallback() {
$args = func_get_args();
if ($args == array(
'foo',
'bar',
)) {
return 'pass';
}
}