You are here

function CollectFilesInjectedApi::suggestFile_checkNothing in X Autoload 7.5

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

File

src/ClassFinder/InjectedApi/CollectFilesInjectedApi.php, line 96

Class

CollectFilesInjectedApi
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->suggestions[] = array(
    __FUNCTION__,
    $file,
  );
  return TRUE;
}