You are here

function LoadClassGetFileInjectedApi::suggestFile_checkNothing in X Autoload 7.4

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

Same as suggestFile(), but assume that file_exists() returns TRUE.

Parameters

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

Return value

bool TRUE, if the file was found - which is always.

Overrides FindFileInjectedApi::suggestFile_checkNothing

File

lib/ClassFinder/InjectedApi/LoadClassGetFileInjectedApi.php, line 66

Class

LoadClassGetFileInjectedApi
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_checkNothing($file) {
  $this->file = $file;
  require $file;
  return TRUE;
}