You are here

function SystemList::__construct in X Autoload 7.5

Parameters

Cache $cache:

SystemTable $systemTable:

DrupalGetFilename $drupalGetFilename:

DrupalStatic $drupalStatic:

File

tests/src/VirtualDrupal/SystemList.php, line 36

Class

SystemList

Namespace

Drupal\xautoload\Tests\VirtualDrupal

Code

function __construct(Cache $cache, SystemTable $systemTable, DrupalGetFilename $drupalGetFilename, DrupalStatic $drupalStatic) {
  $this->cache = $cache;
  $this->drupalGetFilename = $drupalGetFilename;
  $this->systemListLoader = new SystemListLoader($systemTable);
  $this->drupalStatic = $drupalStatic;
}