Constructor.
@api
string $prefix The APC namespace prefix to use.:
object $decorated A class loader object that implements the findFile() method.:
\RuntimeException
\InvalidArgumentException
public function __construct($prefix, $decorated) {
if (!extension_loaded('apc')) {
throw new \RuntimeException('Unable to use ApcClassLoader as APC 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;
}