Skip to content

Commit 865f770

Browse files
committed
Fixed static test failures
1 parent f9bf942 commit 865f770

File tree

24 files changed

+63
-25
lines changed

24 files changed

+63
-25
lines changed

app/code/Magento/Reports/Block/Adminhtml/Sales/Refunded.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class Refunded extends \Magento\Backend\Block\Widget\Grid\Container
2121
protected $_template = 'Magento_Reports::report/grid/container.phtml';
2222

2323
/**
24-
* {@inheritdoc}
24+
* @inheritdoc
2525
*/
2626
protected function _construct()
2727
{

app/code/Magento/Reports/Block/Adminhtml/Sales/Sales.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class Sales extends \Magento\Backend\Block\Widget\Grid\Container
2121
protected $_template = 'Magento_Reports::report/grid/container.phtml';
2222

2323
/**
24-
* {@inheritdoc}
24+
* @inheritdoc
2525
*/
2626
protected function _construct()
2727
{

app/code/Magento/Reports/Block/Adminhtml/Sales/Shipping.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class Shipping extends \Magento\Backend\Block\Widget\Grid\Container
2121
protected $_template = 'Magento_Reports::report/grid/container.phtml';
2222

2323
/**
24-
* {@inheritdoc}
24+
* @inheritdoc
2525
*/
2626
protected function _construct()
2727
{

app/code/Magento/Reports/Block/Adminhtml/Sales/Tax.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class Tax extends \Magento\Backend\Block\Widget\Grid\Container
2121
protected $_template = 'Magento_Reports::report/grid/container.phtml';
2222

2323
/**
24-
* {@inheritdoc}
24+
* @inheritdoc
2525
*/
2626
protected function _construct()
2727
{

app/code/Magento/Reports/Block/Adminhtml/Shopcart/Abandoned.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
class Abandoned extends \Magento\Backend\Block\Widget\Grid\Container
1212
{
1313
/**
14+
* Initialize
15+
*
1416
* @return void
1517
*/
1618
protected function _construct()

app/code/Magento/Reports/Block/Adminhtml/Shopcart/Customer.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
class Customer extends \Magento\Backend\Block\Widget\Grid\Container
1212
{
1313
/**
14+
* Initialize
15+
*
1416
* @return void
1517
*/
1618
protected function _construct()

app/code/Magento/Reports/Block/Adminhtml/Shopcart/Customer/Grid.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ public function __construct(
3434
}
3535

3636
/**
37+
* Initialize
38+
*
3739
* @return void
3840
*/
3941
protected function _construct()
@@ -43,6 +45,8 @@ protected function _construct()
4345
}
4446

4547
/**
48+
* Prepare collection
49+
*
4650
* @return \Magento\Backend\Block\Widget\Grid
4751
*/
4852
protected function _prepareCollection()
@@ -59,6 +63,8 @@ protected function _prepareCollection()
5963
}
6064

6165
/**
66+
* After load collection
67+
*
6268
* @return \Magento\Backend\Block\Widget\Grid|void
6369
*/
6470
protected function _afterLoadCollection()
@@ -67,6 +73,8 @@ protected function _afterLoadCollection()
6773
}
6874

6975
/**
76+
* Prepare columns
77+
*
7078
* @return \Magento\Backend\Block\Widget\Grid\Extended
7179
*/
7280
protected function _prepareColumns()

app/code/Magento/Reports/Block/Adminhtml/Shopcart/Product.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
class Product extends \Magento\Backend\Block\Widget\Grid\Container
1212
{
1313
/**
14+
* Initialize
15+
*
1416
* @return void
1517
*/
1618
protected function _construct()

app/code/Magento/Reports/Block/Adminhtml/Wishlist.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
* Adminhtml wishlist report page content block
1111
*
1212
* @deprecated 100.3.3
13+
* @see Nothing
1314
*/
1415
class Wishlist extends \Magento\Backend\Block\Template
1516
{

app/code/Magento/Reports/Block/Adminhtml/Wishlist/Grid.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ class Grid extends \Magento\Backend\Block\Widget\Grid\Extended
1616
protected $_productsFactory;
1717

1818
/**
19+
* Initialize
20+
*
1921
* @param \Magento\Backend\Block\Template\Context $context
2022
* @param \Magento\Backend\Helper\Data $backendHelper
2123
* @param \Magento\Reports\Model\ResourceModel\Wishlist\Product\CollectionFactory $productsFactory
@@ -32,6 +34,8 @@ public function __construct(
3234
}
3335

3436
/**
37+
* Initialize
38+
*
3539
* @return void
3640
*/
3741
protected function _construct()
@@ -43,6 +47,8 @@ protected function _construct()
4347
}
4448

4549
/**
50+
* Prepare collection
51+
*
4652
* @return $this
4753
*/
4854
protected function _prepareCollection()
@@ -61,6 +67,8 @@ protected function _prepareCollection()
6167
}
6268

6369
/**
70+
* Prepare Columns
71+
*
6472
* @return \Magento\Backend\Block\Widget\Grid\Extended
6573
*/
6674
protected function _prepareColumns()

0 commit comments

Comments
 (0)