You are here

protected function AbstractClassLoaderDecorator::__construct in X Autoload 7.5

Same name and namespace in other branches
  1. 7.4 lib/ClassLoader/AbstractClassLoaderDecorator.php \Drupal\xautoload\ClassLoader\AbstractClassLoaderDecorator::__construct()

Parameters

ClassFinderInterface $finder: The object that does the actual class finding.

File

src/ClassLoader/AbstractClassLoaderDecorator.php, line 21

Class

AbstractClassLoaderDecorator
Behaves mostly like the Symfony ClassLoader classes.

Namespace

Drupal\xautoload\ClassLoader

Code

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