ClassFinderInterface.php 340 B

123456789101112131415161718
  1. <?php
  2. namespace Doctrine\Common\Reflection;
  3. /**
  4. * Finds a class in a PSR-0 structure.
  5. */
  6. interface ClassFinderInterface
  7. {
  8. /**
  9. * Finds a class.
  10. *
  11. * @param string $class The name of the class.
  12. *
  13. * @return string|null The name of the class or NULL if not found.
  14. */
  15. public function findFile($class);
  16. }