mailgun-php/vendor/phpunit/phpunit-mock-objects/Tests/_files/MethodCallbackByReference.php
Travis Swientek e5163bb90b Added PHPUnit
2013-07-18 13:01:36 -05: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;
}
}