Drupal investigation

WithCallableArgument.php 156B

1234567891011
  1. <?php
  2. namespace Fixtures\Prophecy;
  3. class WithCallableArgument
  4. {
  5. public function methodWithArgs(callable $arg_1, callable $arg_2 = null)
  6. {
  7. }
  8. }