class MockFileFinder in Plug 7
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
1 file declares its use of MockFileFinder
- AnnotatedClassDiscovery.php in lib/
Drupal/ Component/ Annotation/ Plugin/ Discovery/ AnnotatedClassDiscovery.php - Contains \Drupal\Component\Annotation\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:: |