class MethodCallbackByReference

Hierarchy

Expanded class hierarchy of MethodCallbackByReference

File

drupal/core/vendor/phpunit/phpunit-mock-objects/Tests/_files/MethodCallbackByReference.php, line 2

View source
class MethodCallbackByReference {
  public function bar($a, &$b, $c) {
    Legacy::bar($a, $b, $c);
  }
  public function callback($a, &$b, $c) {
    $b = 1;
  }

}

Members