Skip to content

Commit a185325

Browse files
committed
Fixed static test failures.
1 parent 8e09cd6 commit a185325

File tree

9 files changed

+13
-13
lines changed

9 files changed

+13
-13
lines changed

app/code/Magento/OfflineShipping/Block/Adminhtml/Form/Field/Export.php

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

3636
/**
37+
* Get elementHtml
38+
*
3739
* @return string
3840
*/
3941
public function getElementHtml()

app/code/Magento/OfflineShipping/Block/Adminhtml/Form/Field/Import.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
class Import extends \Magento\Framework\Data\Form\Element\AbstractElement
1212
{
1313
/**
14+
* Initialize Import
15+
*
1416
* @return void
1517
*/
1618
protected function _construct()

app/code/Magento/OfflineShipping/Model/Config/Backend/Tablerate.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ public function __construct(
4242
}
4343

4444
/**
45+
* After save
46+
*
4547
* @return $this
4648
*/
4749
public function afterSave()

app/code/Magento/OfflineShipping/Model/SalesRule/Rule.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ class Rule
1818
/**
1919
* Free Shipping option "For matching items only"
2020
*/
21-
const FREE_SHIPPING_ITEM = 1;
21+
public const FREE_SHIPPING_ITEM = 1;
2222

2323
/**
2424
* Free Shipping option "For shipment with matching items"
2525
*/
26-
const FREE_SHIPPING_ADDRESS = 2;
26+
public const FREE_SHIPPING_ADDRESS = 2;
2727
}

app/code/Magento/Paypal/Block/Adminhtml/Settlement/Details.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@
1111
class Details extends \Magento\Backend\Block\Widget\Form\Container
1212
{
1313
/**
14-
* Block construction
15-
* Initialize titles, buttons
14+
* Block construction Initialize titles, buttons
1615
*
1716
* @return void
1817
*/

app/code/Magento/Paypal/Block/Hosted/Pro/Iframe.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@
1111
class Iframe extends \Magento\Paypal\Block\Iframe
1212
{
1313
/**
14-
* Internal constructor
15-
* Set payment method code
14+
* Internal constructor Set payment method code
1615
*
1716
* @return void
1817
*/

app/code/Magento/Paypal/Model/Report/Settlement/Row.php

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,6 @@ class Row extends \Magento\Framework\Model\AbstractModel
5050
private $eventLabelsList = [];
5151

5252
/**
53-
* Cast amount relation
54-
*
5553
* @var array
5654
*/
5755
private $castAmountRelation = [
@@ -70,8 +68,7 @@ protected function _construct()
7068
}
7169

7270
/**
73-
* Return description of Reference ID Type
74-
* If no code specified, return full list of codes with their description
71+
* Return description of Reference ID Type If no code specified, return full list of codes with their description
7572
*
7673
* @param string $code
7774
* @return string

app/code/Magento/Paypal/Model/ResourceModel/Report/Settlement/Options/TransactionEvents.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public function __construct(\Magento\Paypal\Model\Report\Settlement\Row $model)
2424
}
2525

2626
/**
27-
* {@inheritdoc}
27+
* @inheritdoc
2828
*/
2929
public function toOptionArray()
3030
{

app/code/Magento/Paypal/Model/ResourceModel/Report/Settlement/Row.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@
1111
class Row extends \Magento\Framework\Model\ResourceModel\Db\AbstractDb
1212
{
1313
/**
14-
* Resource model initialization.
15-
* Set main entity table name and primary key field name.
14+
* Resource model initialization.Set main entity table name and primary key field name.
1615
*
1716
* @return void
1817
*/

0 commit comments

Comments
 (0)