MockFileFinder.php

Same filename and directory in other branches
  1. 9 core/lib/Drupal/Component/Annotation/Reflection/MockFileFinder.php
  2. 8.9.x core/lib/Drupal/Component/Annotation/Reflection/MockFileFinder.php
  3. 10 core/lib/Drupal/Component/Annotation/Reflection/MockFileFinder.php

Namespace

Drupal\Component\Annotation\Reflection

File

core/lib/Drupal/Component/Annotation/Reflection/MockFileFinder.php

View source
<?php

namespace Drupal\Component\Annotation\Reflection;

use Drupal\Component\ClassFinder\ClassFinderInterface;

/**
 * Defines a mock file finder that only returns a single filename.
 *
 * This can be used with
 * Drupal\Component\Annotation\Doctrine\StaticReflectionParser if the filename
 * is known and inheritance is not a concern (for example, if only the class
 * annotation is needed).
 */
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;
    }

}

Classes

Title Deprecated Summary
MockFileFinder Defines a mock file finder that only returns a single filename.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.