OutsideInterface.php 236 B

1234567891011
  1. <?php
  2. namespace Test\Symfony\Component\ErrorHandler\Tests\Fixtures;
  3. interface OutsideInterface
  4. {
  5. /**
  6. * @return string - should not be reported as it's in a non-Symfony namespace
  7. */
  8. public function outsideMethod();
  9. }