initial commit
This commit is contained in:
11
exp/vendor/phpunit/phpunit-mock-objects/Tests/_files/MethodCallbackByReference.php
vendored
Normal file
11
exp/vendor/phpunit/phpunit-mock-objects/Tests/_files/MethodCallbackByReference.php
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
class MethodCallbackByReference
|
||||
{
|
||||
public function bar($a, &$b, $c) {
|
||||
Legacy::bar($a, $b, $c);
|
||||
}
|
||||
|
||||
public function callback($a, &$b, $c) {
|
||||
$b = 1;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user