Skip to content

Commit b0372d6

Browse files
author
Paliarush, Alexander(apaliarush)
committed
Merge pull request #477 from magento-api/MAGETWO-40183
MAGETWO-40183 Accept 9 Public Pull Requests
2 parents d525084 + ec7c7b0 commit b0372d6

File tree

453 files changed

+1279
-500
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

453 files changed

+1279
-500
lines changed

app/code/Magento/AdminNotification/Controller/Adminhtml/Notification.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*/
88
namespace Magento\AdminNotification\Controller\Adminhtml;
99

10-
class Notification extends \Magento\Backend\App\AbstractAction
10+
abstract class Notification extends \Magento\Backend\App\AbstractAction
1111
{
1212
/**
1313
* @return bool

app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/Start.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
*/
77
namespace Magento\Authorizenet\Controller\Adminhtml\Authorizenet\Directpost\Payment;
88

9-
class Start extends \Magento\Sales\Controller\Adminhtml\Order\Create
9+
abstract class Start extends \Magento\Sales\Controller\Adminhtml\Order\Create
1010
{
1111
}

app/code/Magento/Authorizenet/Controller/Directpost/Payment.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
*
1313
* @author Magento Core Team <core@magentocommerce.com>
1414
*/
15-
class Payment extends \Magento\Framework\App\Action\Action
15+
abstract class Payment extends \Magento\Framework\App\Action\Action
1616
{
1717
/**
1818
* Core registry

app/code/Magento/Backend/App/Action.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212
/**
1313
* @SuppressWarnings(PHPMD.NumberOfChildren)
1414
*/
15-
class Action extends \Magento\Backend\App\AbstractAction
15+
abstract class Action extends \Magento\Backend\App\AbstractAction
1616
{
1717
}

app/code/Magento/Backend/Controller/Adminhtml/Auth.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
/**
1111
* Auth backend controller
1212
*/
13-
class Auth extends AbstractAction
13+
abstract class Auth extends AbstractAction
1414
{
1515
/**
1616
* Check if user has permissions to access this controller

app/code/Magento/Backend/Controller/Adminhtml/Cache.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
use Magento\Backend\App\Action;
99
use Magento\Framework\Exception\LocalizedException;
1010

11-
class Cache extends Action
11+
abstract class Cache extends Action
1212
{
1313
/**
1414
* @var \Magento\Framework\App\Cache\TypeListInterface

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
*/
1212
namespace Magento\Backend\Controller\Adminhtml;
1313

14-
class Dashboard extends \Magento\Backend\App\Action
14+
abstract class Dashboard extends \Magento\Backend\App\Action
1515
{
1616
/**
1717
* @return bool

app/code/Magento/Backend/Controller/Adminhtml/Index.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
/**
1111
* Index backend controller
1212
*/
13-
class Index extends AbstractAction
13+
abstract class Index extends AbstractAction
1414
{
1515
/**
1616
* Check if user has permissions to access this controller

app/code/Magento/Backend/Controller/Adminhtml/System.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
*
1313
* @author Magento Core Team <core@magentocommerce.com>
1414
*/
15-
class System extends AbstractAction
15+
abstract class System extends AbstractAction
1616
{
1717
/**
1818
* @return bool

app/code/Magento/Backend/Controller/Adminhtml/System/Account.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
*
1313
* @author Magento Core Team <core@magentocommerce.com>
1414
*/
15-
class Account extends Action
15+
abstract class Account extends Action
1616
{
1717
/**
1818
* @return bool

app/code/Magento/Backend/Controller/Adminhtml/System/Design.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
use Magento\Backend\App\Action;
99

10-
class Design extends Action
10+
abstract class Design extends Action
1111
{
1212
/**
1313
* Core registry

app/code/Magento/Backend/Controller/Adminhtml/System/Store.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
*
1818
* @author Magento Core Team <core@magentocommerce.com>
1919
*/
20-
class Store extends Action
20+
abstract class Store extends Action
2121
{
2222
/**
2323
* Core registry
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?php
2+
/**
3+
* Copyright © 2015 Magento. All rights reserved.
4+
* See COPYING.txt for license details.
5+
*/
6+
7+
namespace Magento\Backend\Test\Unit\App\Action\Stub;
8+
9+
class ActionStub extends \Magento\Backend\App\Action
10+
{
11+
protected function execute()
12+
{
13+
// Empty method stub for test
14+
}
15+
}

app/code/Magento/Backend/view/adminhtml/templates/dashboard/totalbar/refreshstatistics.phtml

100755100644
File mode changed.

app/code/Magento/Backup/Controller/Adminhtml/Index.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*
1111
* @author Magento Core Team <core@magentocommerce.com>
1212
*/
13-
class Index extends \Magento\Backend\App\Action
13+
abstract class Index extends \Magento\Backend\App\Action
1414
{
1515
/**
1616
* Core registry

app/code/Magento/Backup/Controller/Adminhtml/Index/Download.php

100755100644
File mode changed.

app/code/Magento/Backup/Model/Backup.php

100755100644
File mode changed.

app/code/Magento/Backup/Test/Unit/Controller/Adminhtml/Index/DownloadTest.php

100755100644
File mode changed.

app/code/Magento/Backup/Test/Unit/Model/BackupTest.php

100755100644
File mode changed.

app/code/Magento/Braintree/Controller/MyCreditCards.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
use Magento\Framework\App\Action\Context;
1212
use \Braintree_Result_Error;
1313

14-
class MyCreditCards extends \Magento\Framework\App\Action\Action
14+
abstract class MyCreditCards extends \Magento\Framework\App\Action\Action
1515
{
1616
/**
1717
* @var \Magento\Customer\Model\Session

app/code/Magento/Braintree/Controller/PayPal.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
/**
1111
* Braintree PayPal Checkout Controller
1212
*/
13-
class PayPal extends \Magento\Framework\App\Action\Action
13+
abstract class PayPal extends \Magento\Framework\App\Action\Action
1414
{
1515
/**
1616
* @var \Magento\Braintree\Model\CheckoutFactory

app/code/Magento/Braintree/Test/Unit/Controller/MyCreditCardsTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ public function testDispatchNoVault()
114114
->getMock();
115115

116116
$notification = $objectManager->getObject(
117-
'Magento\Braintree\Controller\MyCreditCards',
117+
'Magento\Braintree\Test\Unit\Controller\Stub\MyCreditCardsStub',
118118
[
119119
'customerSession' => $this->customerSession,
120120
'resultRedirectFactory' => $this->resultRedirectFactory,
@@ -157,7 +157,7 @@ public function testDispatchNotLoggedIn()
157157

158158

159159
$notification = $objectManager->getObject(
160-
'Magento\Braintree\Controller\MyCreditCards',
160+
'Magento\Braintree\Test\Unit\Controller\Stub\MyCreditCardsStub',
161161
[
162162
'customerSession' => $this->customerSession,
163163
'resultRedirectFactory' => $this->resultRedirectFactory,

app/code/Magento/Braintree/Test/Unit/Controller/PayPalTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ public function setUp()
100100

101101
$this->objectManagerHelper = new ObjectManagerHelper($this);
102102
$this->controller = $this->objectManagerHelper->getObject(
103-
'\Magento\Braintree\Controller\PayPal',
103+
'Magento\Braintree\Test\Unit\Controller\Stub\PayPalStub',
104104
[
105105
'context' => $contextMock,
106106
'customerSession' => $this->customerSessionMock,
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?php
2+
/**
3+
* Copyright © 2015 Magento. All rights reserved.
4+
* See COPYING.txt for license details.
5+
*/
6+
7+
namespace Magento\Braintree\Test\Unit\Controller\Stub;
8+
9+
class MyCreditCardsStub extends \Magento\Braintree\Controller\MyCreditCards
10+
{
11+
protected function execute()
12+
{
13+
// Empty method stub for test
14+
}
15+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?php
2+
/**
3+
* Copyright © 2015 Magento. All rights reserved.
4+
* See COPYING.txt for license details.
5+
*/
6+
7+
namespace Magento\Braintree\Test\Unit\Controller\Stub;
8+
9+
class PayPalStub extends \Magento\Braintree\Controller\PayPal
10+
{
11+
protected function execute()
12+
{
13+
// Empty method stub for test
14+
}
15+
}

app/code/Magento/BundleImportExport/LICENSE.txt

100755100644
File mode changed.

app/code/Magento/BundleImportExport/LICENSE_AFL.txt

100755100644
File mode changed.

app/code/Magento/BundleImportExport/Model/Import/Product/Type/Bundle.php

100755100644
File mode changed.

app/code/Magento/BundleImportExport/Test/Unit/Model/Import/Product/Type/BundleTest.php

100755100644
File mode changed.

app/code/Magento/BundleImportExport/composer.json

100755100644
File mode changed.

app/code/Magento/BundleImportExport/etc/di.xml

100755100644
File mode changed.

app/code/Magento/BundleImportExport/etc/import.xml

100755100644
File mode changed.

app/code/Magento/BundleImportExport/etc/module.xml

100755100644
File mode changed.

app/code/Magento/Captcha/Model/DefaultModel.php

100755100644
File mode changed.

app/code/Magento/Captcha/Test/Unit/Model/DefaultTest.php

100755100644
File mode changed.

app/code/Magento/Catalog/Block/Adminhtml/Category/Widget/Chooser.php

100755100644
File mode changed.

app/code/Magento/Catalog/Controller/Adminhtml/Category.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
/**
99
* Catalog category controller
1010
*/
11-
class Category extends \Magento\Backend\App\Action
11+
abstract class Category extends \Magento\Backend\App\Action
1212
{
1313
/**
1414
* Initialize requested category and put it into registry.

app/code/Magento/Catalog/Controller/Adminhtml/Category/Widget.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
*
1313
* @author Magento Core Team <core@magentocommerce.com>
1414
*/
15-
class Widget extends \Magento\Backend\App\Action
15+
abstract class Widget extends \Magento\Backend\App\Action
1616
{
1717
/**
1818
* @var \Magento\Framework\View\LayoutFactory

app/code/Magento/Catalog/Controller/Adminhtml/Product.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* Catalog product controller
1212
* @SuppressWarnings(PHPMD.NumberOfChildren)
1313
*/
14-
class Product extends \Magento\Backend\App\Action
14+
abstract class Product extends \Magento\Backend\App\Action
1515
{
1616
/**
1717
* @var Product\Builder

app/code/Magento/Catalog/Controller/Adminhtml/Product/AbstractProductGrid.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
use Magento\Catalog\Controller\Adminhtml\Product;
1111
use Magento\Framework\Controller\Result;
1212

13-
class AbstractProductGrid extends Product
13+
abstract class AbstractProductGrid extends Product
1414
{
1515
/**
1616
* @var \Magento\Framework\View\Result\LayoutFactory

app/code/Magento/Catalog/Controller/Adminhtml/Product/Action/Attribute.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
/**
1414
* Adminhtml catalog product action attribute update controller
1515
*/
16-
class Attribute extends Action
16+
abstract class Attribute extends Action
1717
{
1818
/**
1919
* @var \Magento\Catalog\Helper\Product\Edit\Action\Attribute

app/code/Magento/Catalog/Controller/Adminhtml/Product/Attribute.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
use Magento\Framework\Controller\Result;
1313
use Magento\Framework\View\Result\PageFactory;
1414

15-
class Attribute extends \Magento\Backend\App\Action
15+
abstract class Attribute extends \Magento\Backend\App\Action
1616
{
1717
/**
1818
* @var \Magento\Framework\Cache\FrontendInterface

app/code/Magento/Catalog/Controller/Adminhtml/Product/Set.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*
1111
* @author Magento Core Team <core@magentocommerce.com>
1212
*/
13-
class Set extends \Magento\Backend\App\Action
13+
abstract class Set extends \Magento\Backend\App\Action
1414
{
1515
/**
1616
* Core registry

app/code/Magento/Catalog/Controller/Product.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
use Magento\Catalog\Controller\Product\View\ViewInterface;
1111
use Magento\Catalog\Model\Product as ModelProduct;
1212

13-
class Product extends \Magento\Framework\App\Action\Action implements ViewInterface
13+
abstract class Product extends \Magento\Framework\App\Action\Action implements ViewInterface
1414
{
1515
/**
1616
* Initialize requested product object

app/code/Magento/Catalog/Controller/Product/Compare.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* @SuppressWarnings(PHPMD.LongVariable)
1616
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
1717
*/
18-
class Compare extends \Magento\Framework\App\Action\Action
18+
abstract class Compare extends \Magento\Framework\App\Action\Action
1919
{
2020
/**
2121
* Customer id

app/code/Magento/Catalog/Model/Entity/Attribute.php

100755100644
File mode changed.

app/code/Magento/Catalog/Model/Indexer/Product/Eav/Action/Full.php

100755100644
File mode changed.

app/code/Magento/Catalog/Model/Indexer/Product/Eav/Action/Row.php

100755100644
File mode changed.

app/code/Magento/Catalog/Model/Indexer/Product/Eav/Action/Rows.php

100755100644
File mode changed.

app/code/Magento/Catalog/Model/Indexer/Product/Price/AbstractAction.php

100755100644
File mode changed.

app/code/Magento/Catalog/Model/Indexer/Product/Price/Action/Full.php

100755100644
File mode changed.

app/code/Magento/Catalog/Model/Indexer/Product/Price/Action/Row.php

100755100644
File mode changed.

app/code/Magento/Catalog/Model/Indexer/Product/Price/Action/Rows.php

100755100644
File mode changed.

app/code/Magento/Catalog/Model/Product/Attribute/Backend/Sku.php

100755100644
File mode changed.

app/code/Magento/Catalog/Model/Resource/Product/Indexer/Price/DefaultPrice.php

100755100644
File mode changed.

app/code/Magento/Catalog/Model/Resource/Product/Indexer/Price/Factory.php

100755100644
File mode changed.

app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/Action/FullTest.php

100755100644
File mode changed.

app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/Action/RowTest.php

100755100644
File mode changed.

app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/Action/RowsTest.php

100755100644
File mode changed.

app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Price/Action/RowTest.php

100755100644
File mode changed.

app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Price/Action/RowsTest.php

100755100644
File mode changed.

app/code/Magento/Catalog/Test/Unit/Model/ProductTest.php

100755100644
File mode changed.

app/code/Magento/Catalog/Test/Unit/Model/Template/Filter/FactoryTest.php

100755100644
File mode changed.

app/code/Magento/Catalog/view/adminhtml/templates/catalog/category/widget/tree.phtml

100755100644
File mode changed.

app/code/Magento/CatalogImportExport/Model/Import/Product.php

100755100644
File mode changed.

app/code/Magento/CatalogImportExport/Model/Import/Product/Type/AbstractType.php

100755100644
File mode changed.

app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/product_with_custom_options.csv

100755100644
File mode changed.

app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Validator/MediaTest.php

100755100644
File mode changed.

app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/ValidatorTest.php

100755100644
File mode changed.

app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/ProductTest.php

100755100644
File mode changed.

app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
use Magento\Framework\Registry;
1717
use Magento\Framework\Stdlib\DateTime\Filter\Date;
1818

19-
class Catalog extends Action
19+
abstract class Catalog extends Action
2020
{
2121
/**
2222
* Dirty rules notice message

app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Widget.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
use Magento\Backend\App\Action;
99

10-
class Widget extends Action
10+
abstract class Widget extends Action
1111
{
1212
/**
1313
* @return bool

app/code/Magento/CatalogRule/Model/Indexer/IndexBuilder.php

100755100644
File mode changed.

app/code/Magento/CatalogRule/Setup/InstallData.php

100755100644
File mode changed.

app/code/Magento/CatalogUrlRewrite/etc/adminhtml/di.xml

100755100644
File mode changed.

app/code/Magento/CatalogUrlRewrite/etc/events.xml

100755100644
File mode changed.

app/code/Magento/CatalogWidget/Controller/Adminhtml/Product/Widget.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
/**
1111
* Class Widget
1212
*/
13-
class Widget extends Action
13+
abstract class Widget extends Action
1414
{
1515
/**
1616
* @return bool

app/code/Magento/Checkout/Controller/Cart.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
/**
1313
* Shopping cart controller
1414
*/
15-
class Cart extends \Magento\Framework\App\Action\Action implements ViewInterface
15+
abstract class Cart extends \Magento\Framework\App\Action\Action implements ViewInterface
1616
{
1717
/**
1818
* @var \Magento\Framework\App\Config\ScopeConfigInterface

app/code/Magento/Checkout/Controller/Onepage.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
/**
1414
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
1515
*/
16-
class Onepage extends Action
16+
abstract class Onepage extends Action
1717
{
1818
/**
1919
* @var array

app/code/Magento/Checkout/Exception.php

100755100644
File mode changed.

app/code/Magento/Checkout/Test/Unit/Controller/OnepageTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,9 @@ protected function setUp()
8585
$context->expects($this->once())
8686
->method('getEventManager')
8787
->willReturn($this->eventManager);
88-
88+
8989
$this->controller = $objectManager->getObject(
90-
'Magento\Checkout\Controller\Onepage',
90+
'Magento\Checkout\Test\Unit\Controller\Stub\OnepageStub',
9191
[
9292
'context' => $context
9393
]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?php
2+
/**
3+
* Copyright © 2015 Magento. All rights reserved.
4+
* See COPYING.txt for license details.
5+
*/
6+
7+
namespace Magento\Checkout\Test\Unit\Controller\Stub;
8+
9+
class OnepageStub extends \Magento\Checkout\Controller\Onepage
10+
{
11+
protected function execute()
12+
{
13+
// Empty method stub for test
14+
}
15+
}

app/code/Magento/CheckoutAgreements/Controller/Adminhtml/Agreement.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*/
66
namespace Magento\CheckoutAgreements\Controller\Adminhtml;
77

8-
class Agreement extends \Magento\Backend\App\Action
8+
abstract class Agreement extends \Magento\Backend\App\Action
99
{
1010
/**
1111
* Core registry

app/code/Magento/Cms/Controller/Adminhtml/AbstractMassDelete.php

100755100644
File mode changed.

app/code/Magento/Cms/Controller/Adminhtml/AbstractMassStatus.php

100755100644
File mode changed.

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

100755100644
+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*
1111
* @author Magento Core Team <core@magentocommerce.com>
1212
*/
13-
class Block extends \Magento\Backend\App\Action
13+
abstract class Block extends \Magento\Backend\App\Action
1414
{
1515
/**
1616
* Core registry

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

100755100644
File mode changed.

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

100755100644
File mode changed.

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

100755100644
File mode changed.

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

100755100644
File mode changed.

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

100755100644
File mode changed.

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

100755100644
File mode changed.

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

100755100644
File mode changed.

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

100755100644
File mode changed.

app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Directive.php

100755100644
File mode changed.

app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*
1111
* @author Magento Core Team <core@magentocommerce.com>
1212
*/
13-
class Images extends \Magento\Backend\App\Action
13+
abstract class Images extends \Magento\Backend\App\Action
1414
{
1515
/**
1616
* Core registry

app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/Contents.php

100755100644
File mode changed.

app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/DeleteFiles.php

100755100644
File mode changed.

app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/DeleteFolder.php

100755100644
File mode changed.

app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/Index.php

100755100644
File mode changed.

app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/NewFolder.php

100755100644
File mode changed.

app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/OnInsert.php

100755100644
File mode changed.

app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/Thumbnail.php

100755100644
File mode changed.

app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/TreeJson.php

100755100644
File mode changed.

app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/Upload.php

100755100644
File mode changed.

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

100755100644
File mode changed.

app/code/Magento/Cms/Controller/Page/View.php

100755100644
File mode changed.

app/code/Magento/Cms/Helper/Page.php

100755100644
File mode changed.

app/code/Magento/Cms/Test/Unit/Block/Adminhtml/Block/Edit/FormTest.php

100755100644
File mode changed.

app/code/Magento/Config/Test/Unit/Model/Config/_files/invalidSystemXmlArray.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@
118118
"Element 'resource': [facet 'minLength'] The value has a length of '4'; this underruns the allowed " .
119119
"minimum length of '8'.",
120120
"Element 'resource': [facet 'pattern'] The value 'One:' is not accepted by the " .
121-
"pattern '[A-Z]+[a-zA-Z0-9]{1,}_[A-Z]+[A-Z0-9a-z]{1,}::[A-Za-z_0-9]{1,}'.",
121+
"pattern '([A-Z]+[a-zA-Z0-9]{1,}){1,}_[A-Z]+[A-Z0-9a-z]{1,}::[A-Za-z_0-9]{1,}'.",
122122
"Element 'resource': 'One:' is not " . "a valid value of the atomic type 'typeAclResourceId'."
123123
],
124124
],

0 commit comments

Comments
 (0)