You are here

class Psr0FindFile in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/doctrine/common/lib/Doctrine/Common/Reflection/Psr0FindFile.php \Doctrine\Common\Reflection\Psr0FindFile

Finds a class in a PSR-0 structure.

@author Karoly Negyesi <karoly@negyesi.net>

Hierarchy

Expanded class hierarchy of Psr0FindFile

1 file declares its use of Psr0FindFile
StaticReflectionParserTest.php in vendor/doctrine/common/tests/Doctrine/Tests/Common/Reflection/StaticReflectionParserTest.php

File

vendor/doctrine/common/lib/Doctrine/Common/Reflection/Psr0FindFile.php, line 27

Namespace

Doctrine\Common\Reflection
View source
class Psr0FindFile implements ClassFinderInterface {

  /**
   * The PSR-0 prefixes.
   *
   * @var array
   */
  protected $prefixes;

  /**
   * @param array $prefixes An array of prefixes. Each key is a PHP namespace and each value is
   *                        a list of directories.
   */
  public function __construct($prefixes) {
    $this->prefixes = $prefixes;
  }

  /**
   * {@inheritDoc}
   */
  public function findFile($class) {
    $lastNsPos = strrpos($class, '\\');
    if ('\\' == $class[0]) {
      $class = substr($class, 1);
    }
    if (false !== $lastNsPos) {

      // namespaced class name
      $classPath = str_replace('\\', DIRECTORY_SEPARATOR, substr($class, 0, $lastNsPos)) . DIRECTORY_SEPARATOR;
      $className = substr($class, $lastNsPos + 1);
    }
    else {

      // PEAR-like class name
      $classPath = null;
      $className = $class;
    }
    $classPath .= str_replace('_', DIRECTORY_SEPARATOR, $className) . '.php';
    foreach ($this->prefixes as $prefix => $dirs) {
      if (0 === strpos($class, $prefix)) {
        foreach ($dirs as $dir) {
          if (is_file($dir . DIRECTORY_SEPARATOR . $classPath)) {
            return $dir . DIRECTORY_SEPARATOR . $classPath;
          }
        }
      }
    }
    return null;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
Psr0FindFile::$prefixes protected property The PSR-0 prefixes.
Psr0FindFile::findFile public function Finds a class. Overrides ClassFinderInterface::findFile
Psr0FindFile::__construct public function