Files
ExpenseCount/exp/vendor/phpunit/phpunit-mock-objects/Tests/_files/MethodCallbackByReference.php
2026-06-25 13:03:45 +06: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;
}
}