Skip to content

Commit c9831db

Browse files
committed
Fixed code style issues
1 parent 4a11963 commit c9831db

File tree

4 files changed

+19
-1
lines changed

4 files changed

+19
-1
lines changed

app/code/Magento/Review/Controller/Adminhtml/Product/MassVisibleIn.php

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,20 @@
55
*/
66
namespace Magento\Review\Controller\Adminhtml\Product;
77

8+
use Magento\Framework\App\Action\HttpPostActionInterface;
89
use Magento\Review\Controller\Adminhtml\Product as ProductController;
910
use Magento\Framework\Exception\LocalizedException;
1011
use Magento\Framework\Controller\ResultFactory;
1112

12-
class MassVisibleIn extends ProductController
13+
/**
14+
* Class MassVisibleIn
15+
*/
16+
class MassVisibleIn extends ProductController implements HttpPostActionInterface
1317
{
18+
1419
/**
20+
* Execute action
21+
*
1522
* @return \Magento\Backend\Model\View\Result\Redirect
1623
*/
1724
public function execute()

app/code/Magento/Review/Controller/Adminhtml/Rating/Delete.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,14 @@
99
use Magento\Review\Controller\Adminhtml\Rating as RatingController;
1010
use Magento\Framework\Controller\ResultFactory;
1111

12+
/**
13+
* Class Delete
14+
*/
1215
class Delete extends RatingController implements HttpPostActionInterface
1316
{
1417
/**
18+
* Delete action
19+
*
1520
* @return \Magento\Backend\Model\View\Result\Redirect
1621
*/
1722
public function execute()

app/code/Magento/Review/Controller/Adminhtml/Rating/Save.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99
use Magento\Review\Controller\Adminhtml\Rating as RatingController;
1010
use Magento\Framework\Controller\ResultFactory;
1111

12+
/**
13+
* Class Save
14+
*/
1215
class Save extends RatingController implements HttpPostActionInterface
1316
{
1417
/**

app/code/Magento/Review/Controller/Product/Post.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
use Magento\Framework\Controller\ResultFactory;
1111
use Magento\Review\Model\Review;
1212

13+
/**
14+
* Class Post
15+
*/
1316
class Post extends ProductController implements HttpPostActionInterface
1417
{
1518
/**

0 commit comments

Comments
 (0)