Skip to content

Commit f8f043f

Browse files
committed
Merge remote-tracking branch 'git-36981/no-author/url-user-variable-weee' into bluetooth_delivery
2 parents 824661b + 0a2fb74 commit f8f043f

File tree

13 files changed

+11
-24
lines changed

13 files changed

+11
-24
lines changed

app/code/Magento/UrlRewrite/Block/Catalog/Category/Tree.php

-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212

1313
/**
1414
* Categories tree block for URL rewrites editing process
15-
*
16-
* @author Magento Core Team <[email protected]>
1715
*/
1816
class Tree extends \Magento\Catalog\Block\Adminhtml\Category\AbstractCategory
1917
{

app/code/Magento/UrlRewrite/Block/Catalog/Product/Grid.php

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
/**
99
* Products grid for URL rewrites editing
1010
*
11-
* @author Magento Core Team <[email protected]>
1211
* @SuppressWarnings(PHPMD.DepthOfInheritance)
1312
*/
1413
class Grid extends \Magento\Catalog\Block\Adminhtml\Product\Grid

app/code/Magento/UrlRewrite/Block/Cms/Page/Grid.php

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
/**
99
* CMS pages grid for URL rewrites
1010
*
11-
* @author Magento Core Team <[email protected]>
1211
* @SuppressWarnings(PHPMD.DepthOfInheritance)
1312
*/
1413
class Grid extends \Magento\Cms\Block\Adminhtml\Page\Grid

app/code/Magento/User/Block/Role.php

+4-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
* Magento_User role block
1010
*
1111
* @api
12-
* @author Magento Core Team <[email protected]>
1312
* @since 100.0.2
1413
*/
1514
class Role extends \Magento\Backend\Block\Widget\Grid\Container
@@ -37,6 +36,8 @@ protected function _construct()
3736
}
3837

3938
/**
39+
* Get a URL to create a role
40+
*
4041
* @return string
4142
*/
4243
public function getCreateUrl()
@@ -45,6 +46,8 @@ public function getCreateUrl()
4546
}
4647

4748
/**
49+
* Prepare the layout
50+
*
4851
* @return $this
4952
*/
5053
protected function _prepareLayout()

app/code/Magento/User/Block/User.php

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
* User block
1010
*
1111
* @api
12-
* @author Magento Core Team <[email protected]>
1312
* @since 100.0.2
1413
*/
1514
class User extends \Magento\Backend\Block\Widget\Grid\Container

app/code/Magento/User/Block/User/Edit.php

+2-3
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,11 @@
1010
* User edit page
1111
*
1212
* @api
13-
* @author Magento Core Team <[email protected]>
1413
* @since 100.0.2
1514
*/
1615
class Edit extends \Magento\Backend\Block\Widget\Form\Container
1716
{
1817
/**
19-
* Core registry
20-
*
2118
* @var \Magento\Framework\Registry
2219
*/
2320
protected $_coreRegistry = null;
@@ -121,6 +118,8 @@ public function getObjectId()
121118
}
122119

123120
/**
121+
* Get text to be used in the header
122+
*
124123
* @return \Magento\Framework\Phrase
125124
*/
126125
public function getHeaderText()

app/code/Magento/User/Block/User/Edit/Tabs.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
* User page left menu
1010
*
1111
* @api
12-
* @author Magento Core Team <[email protected]>
1312
* @since 100.0.2
1413
*/
1514
class Tabs extends \Magento\Backend\Block\Widget\Tabs
@@ -28,6 +27,8 @@ protected function _construct()
2827
}
2928

3029
/**
30+
* Add tabs to the HTML
31+
*
3132
* @return $this
3233
*/
3334
protected function _beforeToHtml()

app/code/Magento/User/Model/ResourceModel/Role/User/Collection.php

-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77

88
/**
99
* Admin role users collection
10-
*
11-
* @author Magento Core Team <[email protected]>
1210
*/
1311
class Collection extends \Magento\Framework\Model\ResourceModel\Db\Collection\AbstractCollection
1412
{

app/code/Magento/User/Model/ResourceModel/User/Locked/Collection.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77

88
/**
99
* Admin user collection
10-
*
11-
* @author Magento Core Team <[email protected]>
1210
*/
1311
class Collection extends \Magento\User\Model\ResourceModel\User\Collection
1412
{
@@ -22,5 +20,7 @@ protected function _initSelect()
2220
{
2321
parent::_initSelect();
2422
$this->addFieldToFilter('lock_expires', ['notnull' => true]);
23+
24+
return $this;
2525
}
2626
}

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

-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88

99
/**
1010
* Custom variable resource model
11-
*
12-
* @author Magento Core Team <[email protected]>
1311
*/
1412
class Variable extends \Magento\Framework\Model\ResourceModel\Db\AbstractDb
1513
{

app/code/Magento/Variable/Model/ResourceModel/Variable/Collection.php

-4
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,10 @@
77

88
/**
99
* Custom variable collection
10-
*
11-
* @author Magento Core Team <[email protected]>
1210
*/
1311
class Collection extends \Magento\Framework\Model\ResourceModel\Db\Collection\AbstractCollection
1412
{
1513
/**
16-
* Store Id
17-
*
1814
* @var int
1915
*/
2016
protected $_storeId = 0;

app/code/Magento/Weee/Block/Item/Price/Renderer.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
namespace Magento\Weee\Block\Item\Price;
77

88
use Magento\Framework\Pricing\PriceCurrencyInterface;
9-
use Magento\Sales\Model\Order\CreditMemo\Item as CreditMemoItem;
9+
use Magento\Sales\Model\Order\Creditmemo\Item as CreditMemoItem;
1010
use Magento\Sales\Model\Order\Invoice\Item as InvoiceItem;
1111
use Magento\Sales\Model\Order\Item as OrderItem;
1212
use Magento\Weee\Model\Tax as WeeeDisplayConfig;
@@ -15,7 +15,6 @@
1515
* Item price render block
1616
*
1717
* @api
18-
* @author Magento Core Team <[email protected]>
1918
* @since 100.0.2
2019
*/
2120
class Renderer extends \Magento\Tax\Block\Item\Price\Renderer

app/code/Magento/Weee/Model/ResourceModel/Attribute/Backend/Weee/Tax.php

-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77

88
/**
99
* Catalog product WEEE tax backend attribute model
10-
*
11-
* @author Magento Core Team <[email protected]>
1210
*/
1311
class Tax extends \Magento\Framework\Model\ResourceModel\Db\AbstractDb
1412
{

0 commit comments

Comments
 (0)