This repository has been archived on 2026-07-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
espocrm-base/vendor/phpunit/phpunit-mock-objects/Tests/_files/MethodCallbackByReference.php
T
Taras Machyshyn b0d1bb4486 vendor update
2013-11-19 12:52:41 +02:00

12 lines
187 B
PHP

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