Skip to content

Commit 4adf300

Browse files
committed
ENGCOM-3676: Static test fix.
1 parent a058e6f commit 4adf300

File tree

11 files changed

+30
-9
lines changed

11 files changed

+30
-9
lines changed

app/code/Magento/Cms/Controller/Adminhtml/Block/Edit.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77

88
use Magento\Framework\App\Action\HttpGetActionInterface;
99

10+
/**
11+
* Edit CMS block action.
12+
*/
1013
class Edit extends \Magento\Cms\Controller\Adminhtml\Block implements HttpGetActionInterface
1114
{
1215
/**

app/code/Magento/Cms/Controller/Adminhtml/Block/Index.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
<?php
22
/**
3-
*
43
* Copyright © Magento, Inc. All rights reserved.
54
* See COPYING.txt for license details.
65
*/
76
namespace Magento\Cms\Controller\Adminhtml\Block;
87

98
use Magento\Framework\App\Action\HttpGetActionInterface;
109

10+
/**
11+
* Index action.
12+
*/
1113
class Index extends \Magento\Cms\Controller\Adminhtml\Block implements HttpGetActionInterface
1214
{
1315
/**

app/code/Magento/Cms/Controller/Adminhtml/Block/NewAction.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
<?php
22
/**
3-
*
43
* Copyright © Magento, Inc. All rights reserved.
54
* See COPYING.txt for license details.
65
*/
76
namespace Magento\Cms\Controller\Adminhtml\Block;
87

98
use Magento\Framework\App\Action\HttpGetActionInterface;
109

10+
/**
11+
* Create CMS block action.
12+
*/
1113
class NewAction extends \Magento\Cms\Controller\Adminhtml\Block implements HttpGetActionInterface
1214
{
1315
/**

app/code/Magento/Cms/Controller/Adminhtml/Block/Save.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?php
22
/**
3-
*
43
* Copyright © Magento, Inc. All rights reserved.
54
* See COPYING.txt for license details.
65
*/
@@ -15,6 +14,9 @@
1514
use Magento\Framework\Exception\LocalizedException;
1615
use Magento\Framework\Registry;
1716

17+
/**
18+
* Save CMS block action.
19+
*/
1820
class Save extends \Magento\Cms\Controller\Adminhtml\Block implements HttpPostActionInterface
1921
{
2022
/**

app/code/Magento/Cms/Controller/Adminhtml/Page/Delete.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
<?php
22
/**
3-
*
43
* Copyright © Magento, Inc. All rights reserved.
54
* See COPYING.txt for license details.
65
*/
76
namespace Magento\Cms\Controller\Adminhtml\Page;
87

98
use Magento\Framework\App\Action\HttpPostActionInterface;
109

10+
/**
11+
* Delete CMS page action.
12+
*/
1113
class Delete extends \Magento\Backend\App\Action implements HttpPostActionInterface
1214
{
1315
/**

app/code/Magento/Cms/Controller/Adminhtml/Page/Edit.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?php
22
/**
3-
*
43
* Copyright © Magento, Inc. All rights reserved.
54
* See COPYING.txt for license details.
65
*/
@@ -9,6 +8,9 @@
98
use Magento\Framework\App\Action\HttpGetActionInterface;
109
use Magento\Backend\App\Action;
1110

11+
/**
12+
* Edit CMS page action.
13+
*/
1214
class Edit extends \Magento\Backend\App\Action implements HttpGetActionInterface
1315
{
1416
/**

app/code/Magento/Cms/Controller/Adminhtml/Page/Index.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?php
22
/**
3-
*
43
* Copyright © Magento, Inc. All rights reserved.
54
* See COPYING.txt for license details.
65
*/
@@ -10,6 +9,9 @@
109
use Magento\Backend\App\Action\Context;
1110
use Magento\Framework\View\Result\PageFactory;
1211

12+
/**
13+
* Index action.
14+
*/
1315
class Index extends \Magento\Backend\App\Action implements HttpGetActionInterface
1416
{
1517
/**

app/code/Magento/Cms/Controller/Adminhtml/Page/MassEnable.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
use Magento\Ui\Component\MassAction\Filter;
1212
use Magento\Cms\Model\ResourceModel\Page\CollectionFactory;
1313

14-
1514
/**
1615
* Class MassEnable
1716
*/

app/code/Magento/Cms/Controller/Adminhtml/Page/NewAction.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88

99
use Magento\Framework\App\Action\HttpGetActionInterface;
1010

11+
/**
12+
* Create CMS page action.
13+
*/
1114
class NewAction extends \Magento\Backend\App\Action implements HttpGetActionInterface
1215
{
1316
/**

app/code/Magento/Cms/Controller/Adminhtml/Page/Save.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?php
22
/**
3-
*
43
* Copyright © Magento, Inc. All rights reserved.
54
* See COPYING.txt for license details.
65
*/
@@ -12,6 +11,9 @@
1211
use Magento\Framework\App\Request\DataPersistorInterface;
1312
use Magento\Framework\Exception\LocalizedException;
1413

14+
/**
15+
* Save CMS page action.
16+
*/
1517
class Save extends \Magento\Backend\App\Action implements HttpPostActionInterface
1618
{
1719
/**

app/code/Magento/Cms/Controller/Adminhtml/Page/Widget/Chooser.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?php
22
/**
3-
*
43
* Copyright © Magento, Inc. All rights reserved.
54
* See COPYING.txt for license details.
65
*/
@@ -10,6 +9,9 @@
109
use Magento\Framework\App\Action\HttpPostActionInterface;
1110
use Magento\Backend\App\Action;
1211

12+
/**
13+
* Chooser Source action.
14+
*/
1315
class Chooser extends Action implements HttpPostActionInterface, HttpGetActionInterface
1416
{
1517
/**

0 commit comments

Comments
 (0)