Skip to content

Commit 8c4b159

Browse files
committed
MAGETWO-66100: Remove usages of unserialize in module Magento/Setup
1 parent 91ab56f commit 8c4b159

File tree

1 file changed

+1
-1
lines changed
  • lib/internal/Magento/Framework/App/ObjectManager/ConfigLoader

1 file changed

+1
-1
lines changed

lib/internal/Magento/Framework/App/ObjectManager/ConfigLoader/Compiled.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public function load($area)
2828
if (isset($this->configCache[$area])) {
2929
return $this->configCache[$area];
3030
}
31-
$diConfiguration = include_once(self::getFilePath($area));
31+
$diConfiguration = include(self::getFilePath($area));
3232
$this->configCache[$area] = $diConfiguration;
3333
return $this->configCache[$area];
3434
}

0 commit comments

Comments
 (0)