Skip to content

Commit 17b81b5

Browse files
author
Stanislav Idolov
committed
MAGETWO-51858: Convert literal class names to \Namespace\Classname::class
1 parent 248870a commit 17b81b5

File tree

13 files changed

+33
-18
lines changed

13 files changed

+33
-18
lines changed

app/code/Magento/Bundle/Setup/UpgradeData.php

+6-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,12 @@ public function upgrade(ModuleDataSetupInterface $setup, ModuleContextInterface
4141
$eavSetup = $this->eavSetupFactory->create(['setup' => $setup]);
4242

4343
$attributeSetId = $eavSetup->getDefaultAttributeSetId(ProductAttributeInterface::ENTITY_TYPE_CODE);
44-
$eavSetup->addAttributeGroup(ProductAttributeInterface::ENTITY_TYPE_CODE, $attributeSetId, 'Bundle Items', 16);
44+
$eavSetup->addAttributeGroup(
45+
ProductAttributeInterface::ENTITY_TYPE_CODE,
46+
$attributeSetId,
47+
'Bundle Items',
48+
16
49+
);
4550

4651
$this->upgradePriceType($eavSetup);
4752
$this->upgradeSkuType($eavSetup);

app/code/Magento/Customer/Model/Customer/DataProvider.php

+2
Original file line numberDiff line numberDiff line change
@@ -210,6 +210,7 @@ public function getData()
210210
*
211211
* @param Customer|Address $entity
212212
* @param array $entityData
213+
* @return void
213214
*/
214215
private function overrideFileUploaderData($entity, array &$entityData)
215216
{
@@ -325,6 +326,7 @@ protected function getAttributesMeta(Type $entityType)
325326
* @param Type $entityType
326327
* @param AbstractAttribute $attribute
327328
* @param array $config
329+
* @return void
328330
*/
329331
private function overrideFileUploaderMetadata(
330332
Type $entityType,

app/code/Magento/Customer/Test/Unit/Controller/Account/LogoutTest.php

-2
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,6 @@ protected function setUp()
8787
$cookieMetadataFactoryProperty = $refClass->getProperty('cookieMetadataFactory');
8888
$cookieMetadataFactoryProperty->setAccessible(true);
8989
$cookieMetadataFactoryProperty->setValue($this->controller, $this->cookieMetadataFactory);
90-
91-
9290
}
9391

9492
public function testExecute()

app/code/Magento/Customer/Test/Unit/Model/FileProcessorTest.php

-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ private function getModel($entityTypeCode, array $allowedExtensions = [])
7575
return $model;
7676
}
7777

78-
7978
public function testGetStat()
8079
{
8180
$fileName = '/filename.ext1';

app/code/Magento/Customer/Test/Unit/Model/FileUploaderTest.php

-1
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,6 @@ public function testUpload()
179179
->method('getValidationRules')
180180
->willReturn([$validationRuleMock]);
181181

182-
183182
$model = $this->getModel(CustomerMetadataInterface::ENTITY_TYPE_CUSTOMER, 'customer');
184183
$this->assertEquals($expectedResult, $model->upload());
185184
}

app/code/Magento/Deploy/Model/Deployer.php

+8-1
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,14 @@ public function deploy(ObjectManagerFactory $omFactory, array $locales)
180180
$this->findAncestors($area . Theme::THEME_PATH_SEPARATOR . $themePath)
181181
))
182182
) {
183-
$compiledFile = $this->deployFile($filePath, $area, $themePath, $locale, $module, $fullPath);
183+
$compiledFile = $this->deployFile(
184+
$filePath,
185+
$area,
186+
$themePath,
187+
$locale,
188+
$module,
189+
$fullPath
190+
);
184191
if ($compiledFile !== '') {
185192
$this->deployFile($compiledFile, $area, $themePath, $locale, $module, $fullPath);
186193
}

app/code/Magento/Newsletter/Test/Unit/Model/Plugin/CustomerPluginTest.php

+10-2
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,16 @@ protected function setUp()
3737
->setMethods(['create'])
3838
->getMock();
3939
$this->subscriber = $this->getMockBuilder(\Magento\Newsletter\Model\Subscriber::class)
40-
->setMethods(['loadByEmail', 'getId', 'delete', 'updateSubscription', 'subscribeCustomerById', 'unsubscribeCustomerById'])
41-
->disableOriginalConstructor()
40+
->setMethods(
41+
[
42+
'loadByEmail',
43+
'getId',
44+
'delete',
45+
'updateSubscription',
46+
'subscribeCustomerById',
47+
'unsubscribeCustomerById'
48+
]
49+
)->disableOriginalConstructor()
4250
->getMock();
4351
$this->subscriberFactory->expects($this->any())->method('create')->willReturn($this->subscriber);
4452

app/code/Magento/Ui/Test/Unit/Component/Filters/Type/DateTest.php

-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ class DateTest extends \PHPUnit_Framework_TestCase
3939
*/
4040
private $filterModifierMock;
4141

42-
4342
/**
4443
* @var DataProviderInterface|\PHPUnit_Framework_MockObject_MockObject
4544
*/

app/code/Magento/Webapi/Test/Unit/Controller/SoapTest.php

+1-3
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ class SoapTest extends \PHPUnit_Framework_TestCase
5252
*/
5353
protected $_appStateMock;
5454

55-
5655
protected $_appconfig;
56+
5757
/**
5858
* Set up Controller object.
5959
*/
@@ -109,8 +109,6 @@ protected function setUp()
109109
$appconfig
110110
);
111111

112-
113-
114112
$this->_soapServerMock->expects($this->any())->method('setWSDL')->will($this->returnSelf());
115113
$this->_soapServerMock->expects($this->any())->method('setEncoding')->will($this->returnSelf());
116114
$this->_soapServerMock->expects($this->any())->method('setReturnResponse')->will($this->returnSelf());

dev/tests/api-functional/framework/Magento/TestFramework/Helper/Customer.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ public function createSampleCustomer(array $additional = [])
115115
* @param int $customerId
116116
* @return array|bool|float|int|string
117117
*/
118-
public function updateSampleCustomer(array $additional = [], $customerId)
118+
public function updateSampleCustomer($customerId, array $additional = [])
119119
{
120120
$serviceInfo = [
121121
'rest' => [

dev/tests/api-functional/testsuite/Magento/Customer/Api/AccountManagementTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -824,11 +824,11 @@ public function testUnsubscribeCustomer()
824824
$this->assertEquals($customerData['id'], $this->subscriber->getCustomerId());
825825
//Manage customer in order to unsubscribe
826826
$this->customerHelper->updateSampleCustomer(
827+
$customerData["id"],
827828
array_merge(
828829
$customerData,
829830
["extension_attributes" => ["is_subscribed" => false]]
830-
),
831-
$customerData["id"]
831+
)
832832
);
833833
$this->initSubscriber();
834834

dev/tests/integration/testsuite/Magento/Catalog/Model/ResourceModel/Product/CollectionTest.php

-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ protected function setUp()
3232
);
3333
}
3434

35-
3635
/**
3736
* @magentoDataFixture Magento/Catalog/_files/products.php
3837
* @magentoAppIsolation enabled

setup/src/Magento/Setup/Test/Unit/Controller/InstallTest.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ public function setUp()
5454
$this->webLogger = $this->getMock(\Magento\Setup\Model\WebLogger::class, [], [], '', false);
5555
$installerFactory = $this->getMock(\Magento\Setup\Model\InstallerFactory::class, [], [], '', false);
5656
$this->installer = $this->getMock(\Magento\Setup\Model\Installer::class, [], [], '', false);
57-
$this->progressFactory = $this->getMock(\Magento\Setup\Model\Installer\ProgressFactory::class, [], [], '', false);
57+
$this->progressFactory =
58+
$this->getMock(\Magento\Setup\Model\Installer\ProgressFactory::class, [], [], '', false);
5859
$this->sampleDataState = $this->getMock(\Magento\Framework\Setup\SampleData\State::class, [], [], '', false);
5960
$this->deploymentConfig = $this->getMock(\Magento\Framework\App\DeploymentConfig::class, [], [], '', false);
6061
$this->requestDataConverter = $this->getMock(RequestDataConverter::class, [], [], '', false);
@@ -100,7 +101,7 @@ public function testStartActionPriorInstallException()
100101
$this->installer->expects($this->never())->method('getInstallInfo');
101102
$this->deploymentConfig->expects($this->once())->method('isAvailable')->willReturn(true);
102103
$jsonModel = $this->controller->startAction();
103-
$this->assertInstanceOf('\Zend\View\Model\JsonModel', $jsonModel);
104+
$this->assertInstanceOf(\Zend\View\Model\JsonModel::class, $jsonModel);
104105
$variables = $jsonModel->getVariables();
105106
$this->assertArrayHasKey('success', $variables);
106107
$this->assertArrayHasKey('messages', $variables);

0 commit comments

Comments
 (0)