FooInterface.php 180 B

1234567891011
  1. <?php
  2. namespace Symfony\Component\VarDumper\Tests\Fixtures;
  3. interface FooInterface
  4. {
  5. /**
  6. * Hello.
  7. */
  8. public function foo(?\stdClass $a, \stdClass $b = null);
  9. }