You are here

function CollectFilesInjectedApi::suggestFile_checkIncludePath in X Autoload 7.4

Same name and namespace in other branches
  1. 7.5 src/ClassFinder/InjectedApi/CollectFilesInjectedApi.php \Drupal\xautoload\ClassFinder\InjectedApi\CollectFilesInjectedApi::suggestFile_checkIncludePath()

Same as suggestFile(), but check the full PHP include path.

Parameters

string $file: The file that is supposed to declare the class.

Return value

bool TRUE, if the file exists. FALSE, otherwise.

Overrides InjectedApiInterface::suggestFile_checkIncludePath

File

lib/ClassFinder/InjectedApi/CollectFilesInjectedApi.php, line 111

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 suggestFile_checkIncludePath($file) {
  $this->suggestions[] = array(
    __FUNCTION__,
    $file,
  );
  return __FUNCTION__ == $this->methodName && $file === $this->file;
}