Skip to content

Commit 213031b

Browse files
committed
Fix static test.
1 parent 8d1a45f commit 213031b

File tree

4 files changed

+16
-3
lines changed

4 files changed

+16
-3
lines changed

app/code/Magento/Catalog/Controller/Adminhtml/Product/Edit.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,14 @@
44
* Copyright © Magento, Inc. All rights reserved.
55
* See COPYING.txt for license details.
66
*/
7+
78
namespace Magento\Catalog\Controller\Adminhtml\Product;
89

910
use Magento\Framework\App\Action\HttpGetActionInterface as HttpGetActionInterface;
1011

12+
/**
13+
* Edit product
14+
*/
1115
class Edit extends \Magento\Catalog\Controller\Adminhtml\Product implements HttpGetActionInterface
1216
{
1317
/**

app/code/Magento/NewRelicReporting/Model/Apm/Deployments.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77

88
use \Magento\Framework\HTTP\ZendClient;
99

10+
/**
11+
* Performs the request to make the deployment
12+
*/
1013
class Deployments
1114
{
1215
/**

app/code/Magento/Persistent/Observer/MakePersistentQuoteGuestObserver.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,16 @@
44
* Copyright © Magento, Inc. All rights reserved.
55
* See COPYING.txt for license details.
66
*/
7+
78
namespace Magento\Persistent\Observer;
89

910
use Magento\Framework\Event\ObserverInterface;
1011

12+
/**
13+
* Make persistent quote to be guest
14+
*
15+
* @SuppressWarnings(PHPMD.CookieAndSessionMisuse)
16+
*/
1117
class MakePersistentQuoteGuestObserver implements ObserverInterface
1218
{
1319
/**

app/code/Magento/Ui/Component/Control/SplitButton.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* Copyright © Magento, Inc. All rights reserved.
44
* See COPYING.txt for license details.
55
*/
6+
67
namespace Magento\Ui\Component\Control;
78

89
/**
@@ -22,7 +23,7 @@
2223
class SplitButton extends Button
2324
{
2425
/**
25-
* {@inheritdoc}
26+
* @inheritdoc
2627
*/
2728
protected function getTemplatePath()
2829
{
@@ -201,12 +202,11 @@ public function hasSplit()
201202
{
202203
return $this->hasData('has_split') ? (bool)$this->getData('has_split') : true;
203204
}
204-
205205
/**
206206
* Add data attributes to $attributes array
207207
*
208208
* @param array $data
209-
* @param array &$attributes
209+
* @param array $attributes
210210
* @return void
211211
*/
212212
protected function getDataAttributes($data, &$attributes)

0 commit comments

Comments
 (0)