File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
app/code/Magento/Config/App/Config/Type Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ class System implements ConfigTypeInterface
86
86
* @param int $cachingNestedLevel
87
87
* @param string $configType
88
88
* @param Reader|null $reader
89
- * @param Encryptor|null $encryptorFilter
89
+ * @param Encryptor|null $encryptor
90
90
*
91
91
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
92
92
* @SuppressWarnings(PHPMD.ExcessiveParameterList)
@@ -101,14 +101,14 @@ public function __construct(
101
101
$ cachingNestedLevel = 1 ,
102
102
$ configType = self ::CONFIG_TYPE ,
103
103
Reader $ reader = null ,
104
- Encryptor $ encryptorFilter = null
104
+ Encryptor $ encryptor = null
105
105
) {
106
106
$ this ->postProcessor = $ postProcessor ;
107
107
$ this ->cache = $ cache ;
108
108
$ this ->serializer = $ serializer ;
109
109
$ this ->configType = $ configType ;
110
110
$ this ->reader = $ reader ?: ObjectManager::getInstance ()->get (Reader::class);
111
- $ this ->encryptor = ObjectManager::getInstance ()->get (\Magento \Framework \Encryption \Encryptor::class);
111
+ $ this ->encryptor = $ encryptor ?: ObjectManager::getInstance ()->get (\Magento \Framework \Encryption \Encryptor::class);
112
112
}
113
113
114
114
/**
You can’t perform that action at this time.
0 commit comments