Skip to content

Commit e2d4aa7

Browse files
author
Stanislav Idolov
committed
Code style fixes
1 parent 7236cb0 commit e2d4aa7

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

app/code/Magento/Contact/Test/Unit/Controller/Index/PostTest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,8 @@ public function testExecuteEmptyPost()
133133
}
134134

135135
/**
136+
* @param array $postData
137+
* @param bool $exceptionExpected
136138
* @dataProvider postDataProvider
137139
*/
138140
public function testExecutePostValidation($postData, $exceptionExpected)

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1521,6 +1521,9 @@ public function testChangePassword()
15211521
$this->assertTrue($this->accountManagement->changePassword($email, $currentPassword, $newPassword));
15221522
}
15231523

1524+
/**
1525+
* @throws \Magento\Framework\Exception\LocalizedException
1526+
*/
15241527
public function testResetPassword()
15251528
{
15261529
$customerEmail = 'customer@example.com';

app/code/Magento/Eav/Api/Data/AttributeInterface.php

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,15 @@
66
*/
77
namespace Magento\Eav\Api\Data;
88

9+
use Magento\Framework\Api\CustomAttributesDataInterface;
10+
use Magento\Framework\Api\MetadataObjectInterface;
11+
912
/**
1013
* Interface AttributeInterface
1114
* @api
1215
* @since 100.0.2
1316
*/
14-
interface AttributeInterface
15-
extends \Magento\Framework\Api\CustomAttributesDataInterface,
16-
\Magento\Framework\Api\MetadataObjectInterface
17+
interface AttributeInterface extends CustomAttributesDataInterface, MetadataObjectInterface
1718
{
1819
const ATTRIBUTE_ID = 'attribute_id';
1920

app/code/Magento/Ui/view/base/web/js/grid/columns/actions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ define([
7979

8080
/**
8181
* Adds new action. If an action with the specified identifier
82-
* already exists, then the original will be overriden.
82+
* already exists, then the original will be overridden.
8383
*
8484
* @param {String} index - Actions' identifier.
8585
* @param {Object} action - Actions' data.

0 commit comments

Comments
 (0)