From bb1b3b866364e50207d3480df6635704c021c3e2 Mon Sep 17 00:00:00 2001 From: Andrii Dimov Date: Mon, 24 Apr 2023 03:22:54 -0500 Subject: [PATCH] ACPT-1224: Fix MHI for application-server PR --- .../Magento/Framework/ObjectManager/ObjectManager.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/internal/Magento/Framework/ObjectManager/ObjectManager.php b/lib/internal/Magento/Framework/ObjectManager/ObjectManager.php index 49973ddfbeca6..0dbfd7f6db957 100644 --- a/lib/internal/Magento/Framework/ObjectManager/ObjectManager.php +++ b/lib/internal/Magento/Framework/ObjectManager/ObjectManager.php @@ -36,9 +36,9 @@ class ObjectManager implements \Magento\Framework\ObjectManagerInterface /** * @param FactoryInterface $factory * @param ConfigInterface $config - * @param array $sharedInstances + * @param array &$sharedInstances */ - public function __construct(FactoryInterface $factory, ConfigInterface $config, array &$sharedInstances = []) + public function __construct(FactoryInterface $factory, ConfigInterface $config, &$sharedInstances = []) { $this->_config = $config; $this->_factory = $factory;