You are here

interface ClassFinderInterface in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/doctrine/common/lib/Doctrine/Common/Reflection/ClassFinderInterface.php \Doctrine\Common\Reflection\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 core/lib/Drupal/Component/Annotation/Reflection/MockFileFinder.php
Contains \Drupal\Component\Annotation\Reflection\MockFileFinder.

File

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 string|null The name of the class or NULL if not found.
   */
  public function findFile($class);

}

Members