WithCallableArgument.php 156 B

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