Skip to content

Commit e8cfc55

Browse files
committed
Remove useless aliasses for imports
1 parent d574dce commit e8cfc55

File tree

12 files changed

+13
-13
lines changed

12 files changed

+13
-13
lines changed

dev/tests/api-functional/testsuite/Magento/GraphQl/ConfigurableProduct/UpdateConfigurableCartItemsTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
namespace Magento\GraphQl\ConfigurableProduct;
1010

1111
use Magento\ConfigurableProduct\Model\Product\Type\Configurable;
12-
use Magento\Framework\Exception\NoSuchEntityException as NoSuchEntityException;
12+
use Magento\Framework\Exception\NoSuchEntityException;
1313
use Magento\GraphQl\Quote\GetMaskedQuoteIdByReservedOrderId;
1414
use Magento\Quote\Model\Quote\Item;
1515
use Magento\Quote\Model\QuoteFactory;

dev/tests/api-functional/testsuite/Magento/GraphQl/Quote/EditQuoteItemWithCustomOptionsTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
use Magento\Catalog\Api\ProductCustomOptionRepositoryInterface;
1111
use Magento\Catalog\Api\ProductRepositoryInterface;
12-
use Magento\Framework\Exception\NoSuchEntityException as NoSuchEntityException;
12+
use Magento\Framework\Exception\NoSuchEntityException;
1313
use Magento\Quote\Model\Quote\Item;
1414
use Magento\Quote\Model\QuoteFactory;
1515
use Magento\Quote\Model\ResourceModel\Quote as QuoteResource;

dev/tests/integration/testsuite/Magento/Downloadable/_files/product_downloadable_with_custom_options.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* See COPYING.txt for license details.
55
*/
66

7-
use Magento\TestFramework\Helper\Bootstrap as Bootstrap;
7+
use Magento\TestFramework\Helper\Bootstrap;
88

99
require __DIR__ . '/product_downloadable_with_purchased_separately_links.php';
1010

dev/tests/integration/testsuite/Magento/Downloadable/_files/product_downloadable_with_purchased_separately_links.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*/
66
declare(strict_types=1);
77

8-
use Magento\TestFramework\Helper\Bootstrap as Bootstrap;
8+
use Magento\TestFramework\Helper\Bootstrap;
99
use Magento\Catalog\Model\Product\Attribute\Source\Status as ProductStatus;
1010
use Magento\Downloadable\Model\Product\Type as ProductType;
1111
use Magento\Catalog\Model\Product\Visibility as ProductVisibility;

dev/tests/integration/testsuite/Magento/Downloadable/_files/product_downloadable_without_purchased_separately_links.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*/
66
declare(strict_types=1);
77

8-
use Magento\TestFramework\Helper\Bootstrap as Bootstrap;
8+
use Magento\TestFramework\Helper\Bootstrap;
99
use Magento\Catalog\Model\Product\Attribute\Source\Status as ProductStatus;
1010
use Magento\Downloadable\Model\Product\Type as ProductType;
1111
use Magento\Catalog\Model\Product\Visibility as ProductVisibility;

dev/tests/static/framework/Magento/CodeMessDetector/Test/Unit/Rule/Design/AllPurposeActionTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
use Magento\CodeMessDetector\Rule\Design\AllPurposeAction;
1212
use Magento\Framework\App\Action\HttpGetActionInterface;
1313
use Magento\Framework\App\ActionInterface;
14-
use PHPUnit\Framework\TestCase as TestCase;
14+
use PHPUnit\Framework\TestCase;
1515
use PHPUnit_Framework_MockObject_MockObject as MockObject;
16-
use PHPUnit\Framework\MockObject\Builder\InvocationMocker as InvocationMocker;
16+
use PHPUnit\Framework\MockObject\Builder\InvocationMocker;
1717
use PHPMD\Report;
1818
use PHPMD\Node\ClassNode;
1919

lib/internal/Magento/Framework/Acl/Loader/ResourceLoader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
namespace Magento\Framework\Acl\Loader;
99

1010
use Magento\Framework\Acl;
11-
use Magento\Framework\Acl\AclResource as AclResource;
11+
use Magento\Framework\Acl\AclResource;
1212
use Magento\Framework\Acl\AclResource\ProviderInterface;
1313
use Magento\Framework\Acl\AclResourceFactory;
1414

lib/internal/Magento/Framework/Api/ExtensionAttribute/JoinProcessor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
namespace Magento\Framework\Api\ExtensionAttribute;
88

99
use Magento\Framework\Api\ExtensionAttribute\Config;
10-
use Magento\Framework\Api\ExtensionAttribute\Config\Converter as Converter;
10+
use Magento\Framework\Api\ExtensionAttribute\Config\Converter;
1111
use Magento\Framework\Data\Collection\AbstractDb as DbCollection;
1212
use Magento\Framework\Reflection\TypeProcessor;
1313
use Magento\Framework\Api\ExtensibleDataInterface;

lib/internal/Magento/Framework/Api/ExtensionAttribute/JoinProcessorHelper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
namespace Magento\Framework\Api\ExtensionAttribute;
88

99
use Magento\Framework\Api\ExtensionAttribute\Config;
10-
use Magento\Framework\Api\ExtensionAttribute\Config\Converter as Converter;
10+
use Magento\Framework\Api\ExtensionAttribute\Config\Converter;
1111
use Magento\Framework\Api\SimpleDataObjectConverter;
1212

1313
/**

lib/internal/Magento/Framework/Controller/Test/Unit/Router/Route/FactoryTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
use \Magento\Framework\Controller\Router\Route\Factory;
1010

1111
use Magento\Framework\Controller\Router\Route\Factory as RouteFactory;
12-
use Magento\Framework\TestFramework\Unit\Helper\ObjectManager as ObjectManager;
12+
use Magento\Framework\TestFramework\Unit\Helper\ObjectManager;
1313

1414
class FactoryTest extends \PHPUnit\Framework\TestCase
1515
{

0 commit comments

Comments
 (0)