File tree Expand file tree Collapse file tree 2 files changed +5
-7
lines changed
app/code/Magento/Backend/Block/Widget/Grid/Column
dev/tests/static/testsuite/Magento/Test/Legacy Expand file tree Collapse file tree 2 files changed +5
-7
lines changed Original file line number Diff line number Diff line change 3
3
* Copyright © Magento, Inc. All rights reserved.
4
4
* See COPYING.txt for license details.
5
5
*/
6
+ declare (strict_types=1 );
7
+
6
8
namespace Magento \Backend \Block \Widget \Grid \Column ;
7
9
8
10
/**
@@ -17,15 +19,10 @@ class Multistore extends \Magento\Backend\Block\Widget\Grid\Column
17
19
/**
18
20
* @param \Magento\Backend\Block\Template\Context $context
19
21
* @param array $data
20
- * @param array $additionalRendererTypes
21
22
*/
22
- public function __construct (
23
- \Magento \Backend \Block \Template \Context $ context ,
24
- array $ data = [],
25
- array $ additionalRendererTypes = []
26
- ) {
23
+ public function __construct (\Magento \Backend \Block \Template \Context $ context , array $ data = [])
24
+ {
27
25
parent ::__construct ($ context , $ data );
28
- $ this ->_rendererTypes = array_merge ($ this ->_rendererTypes , $ additionalRendererTypes );
29
26
}
30
27
31
28
/**
Original file line number Diff line number Diff line change 3
3
* Copyright © Magento, Inc. All rights reserved.
4
4
* See COPYING.txt for license details.
5
5
*/
6
+ declare (strict_types=1 );
6
7
7
8
namespace Magento \Test \Legacy ;
8
9
You can’t perform that action at this time.
0 commit comments