Drupal investigation

WithVariadicArgument.php 118B

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