public function MockFileFinder::findFile in Plug 7
Finds a class.
Parameters
string $class The name of the class.:
Return value
string|null The name of the class or NULL if not found.
Overrides ClassFinderInterface::findFile
File
- lib/
Drupal/ Component/ Annotation/ Reflection/ MockFileFinder.php, line 31 - Contains \Drupal\Component\Annotation\Reflection\MockFileFinder.
Class
- MockFileFinder
- Defines a mock file finder that only returns a single filename.
Namespace
Drupal\Component\Annotation\ReflectionCode
public function findFile($class) {
return $this->filename;
}