Skip to content

Commit 2a1bdc3

Browse files
author
v.sikailo
committed
- small phpDocs fixes
1 parent 8c2e178 commit 2a1bdc3

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

app/code/Magento/Backend/Block/Template/Context.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ public function getFormKey()
197197
}
198198

199199
/**
200-
* @return \Magento\Framework\Data\Form\FormKey
200+
* @return \Magento\Framework\Code\NameBuilder
201201
*/
202202
public function getNameBuilder()
203203
{

app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/AbstractRenderer.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public function getColumn()
4848
/**
4949
* Renders grid column
5050
*
51-
* @param Object $row
51+
* @param DataObject $row
5252
* @return string
5353
*/
5454
public function render(DataObject $row)
@@ -66,7 +66,7 @@ public function render(DataObject $row)
6666
/**
6767
* Render column for export
6868
*
69-
* @param Object $row
69+
* @param DataObject $row
7070
* @return string
7171
*/
7272
public function renderExport(DataObject $row)
@@ -75,7 +75,7 @@ public function renderExport(DataObject $row)
7575
}
7676

7777
/**
78-
* @param Object $row
78+
* @param DataObject $row
7979
* @return mixed
8080
*/
8181
protected function _getValue(DataObject $row)
@@ -92,7 +92,7 @@ protected function _getValue(DataObject $row)
9292
}
9393

9494
/**
95-
* @param Object $row
95+
* @param DataObject $row
9696
* @return string
9797
*/
9898
public function _getInputValueElement(DataObject $row)
@@ -108,7 +108,7 @@ public function _getInputValueElement(DataObject $row)
108108
}
109109

110110
/**
111-
* @param Object $row
111+
* @param DataObject $row
112112
* @return mixed
113113
*/
114114
protected function _getInputValue(DataObject $row)

app/code/Magento/Backend/Controller/Adminhtml/Dashboard/ProductsViewed.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class ProductsViewed extends AjaxBlock
1111
/**
1212
* Gets most viewed products list
1313
*
14-
* @return \Magento\Backend\Model\View\Result\Page
14+
* @return \Magento\Framework\Controller\Result\Raw
1515
*/
1616
public function execute()
1717
{

0 commit comments

Comments
 (0)