Skip to content

Commit 1166927

Browse files
committed
Fix static test failures
1 parent 68845f8 commit 1166927

File tree

6 files changed

+13
-24
lines changed

6 files changed

+13
-24
lines changed

app/code/Magento/Wishlist/Block/Customer/Sharing.php

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,15 @@
44
* See COPYING.txt for license details.
55
*/
66

7-
/**
8-
* Wishlist customer sharing block
9-
*/
107
namespace Magento\Wishlist\Block\Customer;
118

129
use Magento\Captcha\Block\Captcha;
1310

1411
/**
15-
* Class Sharing
12+
* Wishlist customer sharing block
1613
*
1714
* @api
1815
* @since 100.0.2
19-
* @package Magento\Wishlist\Block\Customer
2016
*/
2117
class Sharing extends \Magento\Framework\View\Element\Template
2218
{

app/code/Magento/Wishlist/Block/Customer/Wishlist/Button.php

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,27 +4,22 @@
44
* See COPYING.txt for license details.
55
*/
66

7-
/**
8-
* Wishlist block customer item cart column
9-
*/
107
namespace Magento\Wishlist\Block\Customer\Wishlist;
118

129
/**
10+
* Wishlist block customer item cart column
11+
*
1312
* @api
1413
* @since 100.0.2
1514
*/
1615
class Button extends \Magento\Framework\View\Element\Template
1716
{
1817
/**
19-
* Wishlist config
20-
*
2118
* @var \Magento\Wishlist\Model\Config
2219
*/
2320
protected $_wishlistConfig;
2421

2522
/**
26-
* Wishlist data
27-
*
2823
* @var \Magento\Wishlist\Helper\Data
2924
*/
3025
protected $_wishlistData = null;

app/code/Magento/Wishlist/Block/Share/Wishlist.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ public function __construct(
5151
* Prepare global layout
5252
*
5353
* @return $this
54-
*
5554
*/
5655
protected function _prepareLayout()
5756
{

app/code/Magento/Wishlist/Model/ResourceModel/Item.php

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,11 @@
44
* See COPYING.txt for license details.
55
*/
66

7-
/**
8-
* Wishlist item model resource
9-
*/
107
namespace Magento\Wishlist\Model\ResourceModel;
118

129
/**
10+
* Wishlist item model resource
11+
*
1312
* @api
1413
* @since 100.0.2
1514
*/
@@ -54,7 +53,7 @@ public function loadByProductWishlist($object, $wishlistId, $productId, $sharedS
5453
}
5554

5655
/**
57-
* {@inheritdoc}
56+
* @inheritDoc
5857
*/
5958
public function save(\Magento\Framework\Model\AbstractModel $object)
6059
{

app/code/Magento/Wishlist/Model/ResourceModel/Item/Option.php

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,19 @@
44
* See COPYING.txt for license details.
55
*/
66

7-
/**
8-
* Wishlist item option resource model
9-
*/
107
namespace Magento\Wishlist\Model\ResourceModel\Item;
118

129
/**
10+
* Wishlist item option resource model
11+
*
1312
* @api
1413
* @since 100.0.2
1514
*/
1615
class Option extends \Magento\Framework\Model\ResourceModel\Db\AbstractDb
1716
{
1817
/**
18+
* Initialise the resource model
19+
*
1920
* @return void
2021
*/
2122
protected function _construct()

app/code/Magento/Wishlist/Model/ResourceModel/Wishlist.php

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,11 @@
44
* See COPYING.txt for license details.
55
*/
66

7-
/**
8-
* Wishlist resource model
9-
*/
107
namespace Magento\Wishlist\Model\ResourceModel;
118

129
/**
10+
* Wishlist resource model
11+
*
1312
* @api
1413
* @since 100.0.2
1514
*/
@@ -79,7 +78,7 @@ public function setCustomerIdFieldName($fieldName)
7978
}
8079

8180
/**
82-
* {@inheritdoc}
81+
* @inheritDoc
8382
*/
8483
public function save(\Magento\Framework\Model\AbstractModel $object)
8584
{

0 commit comments

Comments
 (0)