File tree Expand file tree Collapse file tree 3 files changed +9
-6
lines changed
Plugin/Controller/System/Config
Config/Controller/Adminhtml/System Expand file tree Collapse file tree 3 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -45,8 +45,11 @@ class SaveAsyncConfigPlugin
45
45
public const ASYNC_CONFIG_OPTION_PATH = 'config/async ' ;
46
46
47
47
/**
48
+ *
48
49
* @param DeploymentConfig|null $deploymentConfig
49
50
* @param AsyncConfigPublisherInterface|null $asyncConfigPublisher
51
+ * @param RedirectFactory $resultRedirectFactory
52
+ * @param ManagerInterface $messageManager
50
53
*/
51
54
public function __construct (
52
55
DeploymentConfig $ deploymentConfig = null ,
@@ -63,11 +66,12 @@ public function __construct(
63
66
}
64
67
65
68
/**
66
- * Execute Save action
67
69
*
68
70
* @param Save $subject
69
- * @throws LocalizedException
71
+ * @param callable $proceed
72
+ * @return \Magento\Backend\Model\View\Result\Redirect
70
73
* @throws FileSystemException
74
+ * @throws LocalizedException
71
75
* @throws RuntimeException
72
76
*/
73
77
public function aroundExecute (Save $ subject , callable $ proceed )
Original file line number Diff line number Diff line change 4
4
"require" : {
5
5
"php" : " ~8.1.0||~8.2.0" ,
6
6
"magento/framework" : " *" ,
7
- "magento/module-config" : " *" ,
8
- "magento/module-media-gallery-integration" : " *" ,
9
- "magento/module-backend" : " *"
7
+ "magento/module-config" : " *"
10
8
},
11
9
"type" : " magento2-module" ,
12
10
"license" : [
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ abstract class AbstractConfig extends \Magento\Backend\App\AbstractAction
23
23
*
24
24
* @see _isAllowed()
25
25
*/
26
- const ADMIN_RESOURCE = 'Magento_Config::config ' ;
26
+ public const ADMIN_RESOURCE = 'Magento_Config::config ' ;
27
27
28
28
/**
29
29
* @var \Magento\Config\Model\Config\Structure
@@ -32,6 +32,7 @@ abstract class AbstractConfig extends \Magento\Backend\App\AbstractAction
32
32
33
33
/**
34
34
* @deprecated 101.0.0
35
+ * @see Nothing
35
36
*/
36
37
protected $ _sectionChecker ;
37
38
You can’t perform that action at this time.
0 commit comments