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