11 lines
153 B
PHP
11 lines
153 B
PHP
<?php
|
|
|
|
namespace Fixtures\Prophecy;
|
|
|
|
class WithReferences
|
|
{
|
|
public function methodWithReferenceArgument(&$arg_1, \ArrayAccess &$arg_2)
|
|
{
|
|
}
|
|
}
|