You are here

function LoadClassInjectedAPI::suggestFile_skipFileExists in X Autoload 7.4

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

Same as suggestFile(), but skip the file_exists(), assuming that we already know the file exists.

This could make sense if a plugin already did the file_exists() check.

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 InjectedApiInterface::suggestFile_skipFileExists

File

lib/ClassFinder/InjectedApi/LoadClassInjectedAPI.php, line 31

Class

LoadClassInjectedAPI
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_skipFileExists($file) {
  require $file;
  return TRUE;
}