WithVariadicArgument.php 118 B

12345678910
  1. <?php
  2. namespace Fixtures\Prophecy;
  3. class WithVariadicArgument
  4. {
  5. function methodWithArgs(...$args)
  6. {
  7. }
  8. }