We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f770d7 commit acb1cadCopy full SHA for acb1cad
src/Symfony/Component/Debug/DebugClassLoader.php
@@ -141,7 +141,7 @@ public function loadClass($class)
141
if ($this->isFinder && !isset($this->loaded[$class])) {
142
$this->loaded[$class] = true;
143
if ($file = $this->classLoader[0]->findFile($class) ?: false) {
144
- $wasCached = \function_exists('opcache_is_script_cached') && opcache_is_script_cached($file);
+ $wasCached = \function_exists('opcache_is_script_cached') && @opcache_is_script_cached($file);
145
146
require $file;
147
0 commit comments