Ver Fonte

Allow ApcClassLoader to be autoloaded by the initial loader

Jordi Boggiano há 12 anos atrás
pai
commit
ea047dd001
1 ficheiros alterados com 2 adições e 2 exclusões
  1. 2 2
      web/app.php

+ 2 - 2
web/app.php

@@ -11,9 +11,9 @@ $loader = require_once __DIR__.'/../app/bootstrap.php.cache';
 // Change 'sf2' to a unique prefix in order to prevent cache key conflicts
 // with other applications also using APC.
 if (function_exists('apc_store')) {
+    $apcLoader = new ApcClassLoader('packagist', $loader);
     $loader->unregister();
-    $loader = new ApcClassLoader('packagist', $loader);
-    $loader->register(true);
+    $apcLoader->register(true);
 }
 
 require_once __DIR__.'/../app/AppKernel.php';