Skip to content

Commit 544f044

Browse files
author
Stanislav Idolov
committed
magento-engcom/magento2ce#4271: Fixed code style
1 parent d103017 commit 544f044

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

app/code/Magento/CatalogWidget/Model/Rule/Condition/Product.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
class Product extends \Magento\Rule\Model\Condition\Product\AbstractProduct
2323
{
2424
/**
25-
* {@inheritdoc}
25+
* @var string
2626
*/
2727
protected $elementName = 'parameters';
2828

@@ -32,8 +32,6 @@ class Product extends \Magento\Rule\Model\Condition\Product\AbstractProduct
3232
protected $joinedAttributes = [];
3333

3434
/**
35-
* Store manager
36-
*
3735
* @var \Magento\Store\Model\StoreManagerInterface
3836
*/
3937
protected $storeManager;

app/code/Magento/Sales/view/frontend/templates/order/print/invoice.phtml

Lines changed: 1 addition & 0 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+
// @codingStandardsIgnoreFile
67
?>
78
<?php $_order = $block->getOrder() ?>
89
<?php $_invoice = $block->getInvoice() ?>

app/design/adminhtml/Magento/backend/web/css/source/actions/_actions-multiselect.less

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111
// Variables
1212
// _____________________________________________
1313

14+
/**
15+
* @codingStandardsIgnoreStart
16+
*/
1417
@action-multiselect-menu-item__padding: 1rem;
1518
@action-multiselect-menu-item__hover__background-color: @color-gray89;
1619
@action-multiselect-menu-item__selected__background-color: @color-blue-clear-sky;
@@ -287,7 +290,7 @@
287290
&:active {
288291
padding: 0;
289292
transform: scale(.9);
290-
293+
291294
&:before {
292295
font-size: 1em;
293296
}

lib/internal/Magento/Framework/Filesystem/Glob.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,13 @@
1414
*/
1515
class Glob extends LaminasGlob
1616
{
17+
/**
18+
* @var array
19+
*/
1720
private static $cache = [];
21+
1822
/**
19-
* Find pathnames matching a pattern.
23+
* Find path names matching a pattern.
2024
*
2125
* @param string $pattern
2226
* @param int $flags

0 commit comments

Comments
 (0)