We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9850c4a commit 32b0399Copy full SHA for 32b0399
setup/src/Magento/Setup/Model/Installer.php
@@ -392,7 +392,8 @@ public function install($request)
392
list($message, $method, $params) = $item;
393
$this->log->log($message);
394
try {
395
- $this->$method(...$params);
+ // phpcs:ignore Magento2.Functions.DiscouragedFunction
396
+ call_user_func_array([$this, $method], $params);
397
} catch (RuntimeException $e) {
398
$this->revertRemoteStorageConfiguration();
399
throw $e;
0 commit comments