11 lines
118 B
PHP
11 lines
118 B
PHP
<?php
|
|
|
|
namespace Fixtures\Prophecy;
|
|
|
|
class WithVariadicArgument
|
|
{
|
|
function methodWithArgs(...$args)
|
|
{
|
|
}
|
|
}
|