Skip to content

Commit 9238a26

Browse files
author
Bohdan Korablov
committed
MAGETWO-55903: Prepare PR
1 parent f09c38b commit 9238a26

File tree

5 files changed

+4
-2
lines changed

5 files changed

+4
-2
lines changed

setup/src/Magento/Setup/Console/Command/MaintenanceDisableCommand.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ protected function getDisplayString()
4242
return '<info>Disabled maintenance mode</info>';
4343
}
4444

45-
4645
/**
4746
* Return if IP addresses effective for maintenance mode were set
4847
*

setup/src/Magento/Setup/Model/Cron/JobFactory.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ public function __construct(ServiceLocatorInterface $serviceLocator)
5959
* @return AbstractJob
6060
* @throws \RuntimeException
6161
* @SuppressWarnings(PHPMD.ExcessiveMethodLength)
62+
* @SuppressWarnings(PHPMD.CyclomaticComplexity)
6263
*/
6364
public function create($name, array $params = [])
6465
{

setup/src/Magento/Setup/Test/Unit/Model/Grid/ModuleTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919

2020
/**
2121
* Class ModuleTest
22+
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
2223
*/
2324
class ModuleTest extends \PHPUnit_Framework_TestCase
2425
{

setup/view/magento/setup/install-extension-grid.phtml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,8 @@
107107
<td>
108108
<span class="data-grid-data">
109109
<select id="selectedVersion" ng-model="extension.version">
110-
<option ng-repeat="version in extension.versions" value="{{version}}">Version {{version}}</option>
110+
<option ng-repeat="version in extension.versions"
111+
value="{{version}}">Version {{version}}</option>
111112
</select>
112113
</span>
113114
</td>

0 commit comments

Comments
 (0)