You are here

class MockFileFinder in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Component/Annotation/Reflection/MockFileFinder.php \Drupal\Component\Annotation\Reflection\MockFileFinder
  2. 10 core/lib/Drupal/Component/Annotation/Reflection/MockFileFinder.php \Drupal\Component\Annotation\Reflection\MockFileFinder

Defines a mock file finder that only returns a single filename.

This can be used with Doctrine\Common\Reflection\StaticReflectionParser if the filename is known and inheritance is not a concern (for example, if only the class annotation is needed).

Hierarchy

  • class \Drupal\Component\Annotation\Reflection\MockFileFinder implements \Doctrine\Common\Reflection\ClassFinderInterface

Expanded class hierarchy of MockFileFinder

5 files declare their use of MockFileFinder
AnnotatedClassDiscovery.php in core/lib/Drupal/Component/Annotation/Plugin/Discovery/AnnotatedClassDiscovery.php
AnnotatedClassDiscoveryAutomatedProviders.php in core/modules/migrate/src/Plugin/Discovery/AnnotatedClassDiscoveryAutomatedProviders.php
MockFileFinderTest.php in core/tests/Drupal/Tests/Component/Annotation/MockFileFinderTest.php
TestDiscovery.php in core/modules/simpletest/src/TestDiscovery.php
TestDiscovery.php in core/lib/Drupal/Core/Test/TestDiscovery.php

File

core/lib/Drupal/Component/Annotation/Reflection/MockFileFinder.php, line 14

Namespace

Drupal\Component\Annotation\Reflection
View source
class MockFileFinder implements ClassFinderInterface {

  /**
   * The only filename this finder ever returns.
   *
   * @var string
   */
  protected $filename;

  /**
   * {@inheritdoc}
   */
  public function findFile($class) {
    return $this->filename;
  }

  /**
   * Creates new mock file finder objects.
   */
  public static function create($filename) {
    $object = new static();
    $object->filename = $filename;
    return $object;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
MockFileFinder::$filename protected property The only filename this finder ever returns.
MockFileFinder::create public static function Creates new mock file finder objects.
MockFileFinder::findFile public function Finds a class.