You are here

function LibrariesFinderPlugin::__construct in X Autoload 7.5

Parameters

ExtendedClassFinderInterface $finder:

DrupalSystemInterface $system:

File

src/Libraries/LibrariesFinderPlugin.php, line 34

Class

LibrariesFinderPlugin
Registers autoload mappings from all libraries on hook_init(), or after the first cache miss.

Namespace

Drupal\xautoload\Libraries

Code

function __construct(ExtendedClassFinderInterface $finder, DrupalSystemInterface $system) {
  $this->finder = $finder;
  $this->system = $system;
}