public function WinCacheClassLoader::__construct

Constructor.

Parameters

string $prefix The WinCache namespace prefix to use.:

object $decorated A class loader object that implements the findFile() method.:

Throws

\RuntimeException

\InvalidArgumentException

File

drupal/core/vendor/symfony/class-loader/Symfony/Component/ClassLoader/WinCacheClassLoader.php, line 62

Class

WinCacheClassLoader
WinCacheClassLoader implements a wrapping autoloader cached in WinCache.

Namespace

Symfony\Component\ClassLoader

Code

public function __construct($prefix, $decorated) {
  if (!extension_loaded('wincache')) {
    throw new \RuntimeException('Unable to use WinCacheClassLoader as WinCache is not enabled.');
  }
  if (!method_exists($decorated, 'findFile')) {
    throw new \InvalidArgumentException('The class finder must implement a "findFile" method.');
  }
  $this->prefix = $prefix;
  $this->decorated = $decorated;
}