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

Lines changed: 0 additions & 2 deletions
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 <core@magentocommerce.com>
1715
*/
1816
class Tree extends \Magento\Catalog\Block\Adminhtml\Category\AbstractCategory
1917
{

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

Lines changed: 0 additions & 1 deletion
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 <core@magentocommerce.com>
1211
* @SuppressWarnings(PHPMD.DepthOfInheritance)
1312
*/
1413
class Grid extends \Magento\Catalog\Block\Adminhtml\Product\Grid

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

Lines changed: 0 additions & 1 deletion
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 <core@magentocommerce.com>
1211
* @SuppressWarnings(PHPMD.DepthOfInheritance)
1312
*/
1413
class Grid extends \Magento\Cms\Block\Adminhtml\Page\Grid

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

Lines changed: 4 additions & 1 deletion
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 <core@magentocommerce.com>
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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
* User block
1010
*
1111
* @api
12-
* @author Magento Core Team <core@magentocommerce.com>
1312
* @since 100.0.2
1413
*/
1514
class User extends \Magento\Backend\Block\Widget\Grid\Container

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,11 @@
1010
* User edit page
1111
*
1212
* @api
13-
* @author Magento Core Team <core@magentocommerce.com>
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

Lines changed: 2 additions & 1 deletion
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 <core@magentocommerce.com>
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

Lines changed: 0 additions & 2 deletions
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 <core@magentocommerce.com>
1210
*/
1311
class Collection extends \Magento\Framework\Model\ResourceModel\Db\Collection\AbstractCollection
1412
{

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77

88
/**
99
* Admin user collection
10-
*
11-
* @author Magento Core Team <core@magentocommerce.com>
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

Lines changed: 0 additions & 2 deletions
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 <core@magentocommerce.com>
1311
*/
1412
class Variable extends \Magento\Framework\Model\ResourceModel\Db\AbstractDb
1513
{

0 commit comments

Comments
 (0)