FooInterface.php 146 B

123456789101112
  1. <?php
  2. namespace Symfony\Component\VarDumper\Tests\Fixtures;
  3. interface FooInterface
  4. {
  5. /**
  6. * Hello.
  7. */
  8. public function foo();
  9. }