You are here

function CollectFilesInjectedApi::getSuggestions 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::getSuggestions()

When the process has finished, use this to return the result.

Return value

string The file that is supposed to declare the class.

File

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

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 getSuggestions() {
  return $this->suggestions;
}