class MockFileFinder in Zircon Profile 8
Same name and namespace in other branches
- 8.0 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 ClassFinderInterface
Expanded class hierarchy of MockFileFinder
2 files declare their use of MockFileFinder
- AnnotatedClassDiscovery.php in core/
lib/ Drupal/ Component/ Annotation/ Plugin/ Discovery/ AnnotatedClassDiscovery.php - Contains \Drupal\Component\Annotation\Plugin\Discovery\AnnotatedClassDiscovery.
- TestDiscovery.php in core/
modules/ simpletest/ src/ TestDiscovery.php - Contains \Drupal\simpletest\TestDiscovery.
File
- core/
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:: |