You are here

function AbstractInjectedApi::getClass in X Autoload 7.5

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

Get the name of the class we are looking for.

Return value

string The class we are looking for.

Overrides InjectedApiInterface::getClass

File

src/ClassFinder/InjectedApi/AbstractInjectedApi.php, line 40

Class

AbstractInjectedApi
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 getClass() {
  return $this->className;
}