class MockFileFinder in Service Container 7
Same name and namespace in other branches
- 7.2 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 ClassFinderInterface
 
Expanded class hierarchy of MockFileFinder
2 files declare their use of MockFileFinder
- AnnotatedClassDiscovery.php in lib/
Drupal/ Component/ Annotation/ Plugin/ Discovery/ AnnotatedClassDiscovery.php  - Contains \Drupal\Component\Annotation\Plugin\Discovery\AnnotatedClassDiscovery.
 - AnnotatedClassDiscovery.php in modules/
providers/ service_container_annotation_discovery/ src/ Plugin/ Discovery/ AnnotatedClassDiscovery.php  - Contains \Drupal\service_container_annotation_discovery\Plugin\Discovery\AnnotatedClassDiscovery
 
File
- lib/
Drupal/ Component/ Annotation/ Reflection/ MockFileFinder.php, line 19  - Contains \Drupal\Component\Annotation\Reflection\MockFileFinder.
 
Namespace
Drupal\Component\Annotation\ReflectionView 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
| 
            Name | 
                  Modifiers | Type | Description | Overrides | 
|---|---|---|---|---|
| 
            MockFileFinder:: | 
                  protected | property | The only filename this finder ever returns. | |
| 
            MockFileFinder:: | 
                  public static | function | Creates new mock file finder objects. | |
| 
            MockFileFinder:: | 
                  public | function | 
            Finds a class. Overrides ClassFinderInterface:: |