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 7201bc0 commit b6dc664Copy full SHA for b6dc664
lib/internal/Magento/Framework/Data/Collection/AbstractDb.php
@@ -902,8 +902,8 @@ public function __wakeup()
902
{
903
parent::__wakeup();
904
$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
905
- $this->_fetchStrategy = $objectManager->get(Logger::class);
906
- $this->_logger = $objectManager->get(FetchStrategyInterface::class);
+ $this->_logger = $objectManager->get(Logger::class);
+ $this->_fetchStrategy = $objectManager->get(FetchStrategyInterface::class);
907
$this->_conn = $objectManager->get(ResourceConnection::class)->getConnection();
908
}
909
0 commit comments