From 290bf4b16576c0eb556d3ea70dc03806090233ba Mon Sep 17 00:00:00 2001
From: Maddy Chellathurai <mchellathura@magento.com>
Date: Thu, 17 Mar 2016 14:00:27 -0500
Subject: [PATCH] MAGETWO-50516: Contribute Ogre Bugfixes and Stories for
 Sprint 46

-  adding fully qualified namespace to resolve L3 errors
---
 setup/src/Magento/Setup/Model/MarketplaceManager.php | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/setup/src/Magento/Setup/Model/MarketplaceManager.php b/setup/src/Magento/Setup/Model/MarketplaceManager.php
index 0cc680f3c0c..7134769b420 100644
--- a/setup/src/Magento/Setup/Model/MarketplaceManager.php
+++ b/setup/src/Magento/Setup/Model/MarketplaceManager.php
@@ -271,7 +271,8 @@ class MarketplaceManager
                 $authJsonData = $this->getAuthJson();
                 if (isset($authJsonData['http-basic']) && isset($authJsonData['http-basic'][$serviceUrl])) {
                     unset($authJsonData['http-basic'][$serviceUrl]);
-                    $path = DirectoryList::COMPOSER_HOME . DIRECTORY_SEPARATOR . $this->pathToAuthFile;
+                    $path = \Magento\Framework\App\Filesystem\DirectoryList::COMPOSER_HOME
+                        . DIRECTORY_SEPARATOR . $this->pathToAuthFile;
                     if ($authJsonData === ['http-basic' => []]) {
                         return $this->getDirectory()->delete($path);
                     } else {
-- 
GitLab