You are here

function CollectFilesInjectedApi::__construct in X Autoload 7.5

Same name and namespace in other branches
  1. 7.4 lib/ClassFinder/InjectedApi/CollectFilesInjectedApi.php \Drupal\xautoload\ClassFinder\InjectedApi\CollectFilesInjectedApi::__construct()

The method that, if called with $this->file, will return TRUE.

Parameters

string $class_name:

string $file: The file where $this->$method($this->file) will return TRUE.

Overrides AbstractInjectedApi::__construct

File

src/ClassFinder/InjectedApi/CollectFilesInjectedApi.php, line 37

Class

CollectFilesInjectedApi
To help testability, we use an injected API instead of just a return value. The injected API can be mocked to provide a mocked file_exists(), and to monitor all suggested candidates, not just the correct return value.

Namespace

Drupal\xautoload\ClassFinder\InjectedApi

Code

function __construct($class_name, $method_name, $file) {
  $this->methodName = $method_name;
  $this->file = $file;
  parent::__construct($class_name);
}