public static function MockFileFinder::create 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::create()
 
Creates new mock file finder objects.
2 calls to MockFileFinder::create()
- AnnotatedClassDiscovery::getDefinitions in core/
lib/ Drupal/ Component/ Annotation/ Plugin/ Discovery/ AnnotatedClassDiscovery.php  - Gets the definition of all plugins for this type.
 - TestDiscovery::getTestClasses in core/
modules/ simpletest/ src/ TestDiscovery.php  - Discovers all available tests in all extensions.
 
File
- core/
lib/ Drupal/ Component/ Annotation/ Reflection/ MockFileFinder.php, line 38  - 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 static function create($filename) {
  $object = new static();
  $object->filename = $filename;
  return $object;
}