mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2025-02-14 12:13:14 +03:00
12 lines
187 B
PHP
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;
|
|
}
|
|
}
|