You are here

function InjectedApiInterface::suggestFile in X Autoload 7.5

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

Suggest a file that, if the file exists, has to declare the class we are looking for. Only keep the class on success.

Parameters

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

Return value

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

3 methods override InjectedApiInterface::suggestFile()
CollectFilesInjectedApi::suggestFile in src/ClassFinder/InjectedApi/CollectFilesInjectedApi.php
Suggest a file that, if the file exists, has to declare the class we are looking for. Only keep the class on success.
FindFileInjectedApi::suggestFile in src/ClassFinder/InjectedApi/FindFileInjectedApi.php
Suggest a file that, if the file exists, has to declare the class we are looking for. Only keep the class on success.
LoadClassInjectedAPI::suggestFile in src/ClassFinder/InjectedApi/LoadClassInjectedAPI.php
Suggest a file that, if the file exists, has to declare the class we are looking for. Only keep the class on success.

File

src/ClassFinder/InjectedApi/InjectedApiInterface.php, line 39

Class

InjectedApiInterface
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($file);