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 20b70d3 commit a344a3dCopy full SHA for a344a3d
app/code/Magento/Deploy/Model/DeploymentConfig/ImporterPool.php
@@ -129,12 +129,10 @@ public function getImporters()
129
130
$importerObj = $this->objectManager->get($importer['class']);
131
if (!$importerObj instanceof ImporterInterface) {
132
- throw new ConfigurationMismatchException(
133
- __(
134
- '%1: Instance of %2 is expected, got %3 instead',
135
- $section,
136
- ImporterInterface::class, get_class($importerObj
137
- )
+ throw new ConfigurationMismatchException(__(
+ '%1: Instance of %2 is expected, got %3 instead',
+ $section,
+ ImporterInterface::class, get_class($importerObj)
138
));
139
}
140
$result[$section] = $importerObj;
0 commit comments