You are here

function LoadClassInjectedAPI::guessFile 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::guessFile()

Suggest a file that MUST exists, and that MAY declare the class we are looking for.

This is useful if a plugin already did the is_file() check by itself.

Parameters

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

Return value

boolean|NULL TRUE, if we are not interested in further candidates. FALSE|NULL, if we are interested in further candidates.

Overrides InjectedApiInterface::guessFile

File

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

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 guessFile($file) {
  require_once $file;
  return Util::classIsDefined($this->className);
}