interface ClassFinderInterface

Finds a class in a PSR-0 structure.

@author Karoly Negyesi <karoly@negyesi.net>

Hierarchy

Expanded class hierarchy of ClassFinderInterface

All classes that implement ClassFinderInterface

1 file declares its use of ClassFinderInterface
MockFileFinder.php in drupal/core/lib/Drupal/Component/Reflection/MockFileFinder.php
Definition of Drupal\Component\Reflection\MockFileFinder.

File

drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Reflection/ClassFinderInterface.php, line 27

Namespace

Doctrine\Common\Reflection
View source
interface ClassFinderInterface {

  /**
   * Finds a class.
   *
   * @param string $class The name of the class.
   *
   * @return
   *     The name of the class or NULL if not found.
   */
  public function findFile($class);

}

Members