You are here

function ProxyClassFinder::__construct in X Autoload 7.4

Same name and namespace in other branches
  1. 7.5 src/ClassFinder/ProxyClassFinder.php \Drupal\xautoload\ClassFinder\ProxyClassFinder::__construct()

Parameters

ExtendedClassFinderInterface $finder:

DrupalExtensionAdapter $helper:

File

lib/ClassFinder/ProxyClassFinder.php, line 43

Class

ProxyClassFinder
A placeholder class finder. Used to postpone expensive operations until they are actually needed.

Namespace

Drupal\xautoload\ClassFinder

Code

function __construct($finder, $helper) {
  $this->finder = $finder;
  $this->helper = $helper;
}