You are here

function InjectedApiInterface::suggestFile_skipFileExists in X Autoload 7.4

Same name and namespace in other branches
  1. 7.5 src/ClassFinder/InjectedApi/InjectedApiInterface.php \Drupal\xautoload\ClassFinder\InjectedApi\InjectedApiInterface::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.

3 methods override InjectedApiInterface::suggestFile_skipFileExists()
CollectFilesInjectedApi::suggestFile_skipFileExists in lib/ClassFinder/InjectedApi/CollectFilesInjectedApi.php
Same as suggestFile(), but skip the file_exists(), assuming that we already know the file exists.
FindFileInjectedApi::suggestFile_skipFileExists in lib/ClassFinder/InjectedApi/FindFileInjectedApi.php
Same as suggestFile(), but skip the file_exists(), assuming that we already know the file exists.
LoadClassInjectedAPI::suggestFile_skipFileExists in lib/ClassFinder/InjectedApi/LoadClassInjectedAPI.php
Same as suggestFile(), but skip the file_exists(), assuming that we already know the file exists.

File

lib/ClassFinder/InjectedApi/InjectedApiInterface.php, line 53

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