You are here

public function MethodCallback::nonStaticCallback in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/phpunit-mock-objects/tests/_fixture/MethodCallback.php \MethodCallback::nonStaticCallback()

File

vendor/phpunit/phpunit-mock-objects/tests/_fixture/MethodCallback.php, line 13

Class

MethodCallback

Code

public function nonStaticCallback() {
  $args = func_get_args();
  if ($args == array(
    'foo',
    'bar',
  )) {
    return 'pass';
  }
}