[ClassLoader] fixed typo

This commit is contained in:
Fabien Potencier 2012-07-03 21:28:10 +02:00
parent 391ee67d68
commit 037b4d8096

View File

@ -55,7 +55,7 @@ class ApcClassLoader
public function __construct($prefix, $classFinder)
{
if (!extension_loaded('apc')) {
throw new \RuntimeException('Unable to use ApcUniversalClassLoader as APC is not enabled.');
throw new \RuntimeException('Unable to use ApcClassLoader as APC is not enabled.');
}
if (!method_exists($classFinder, 'findFile')) {