Skip to content

Commit 7411b0e

Browse files
authored
Fixed typo in BMBackupManagerExtension.php (#70)
1 parent e4612eb commit 7411b0e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

DependencyInjection/BMBackupManagerExtension.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ private function validateStorage(array $config)
8383
foreach ($config as $key => $storageConfig) {
8484
$type = $storageConfig['type'];
8585
if (!class_exists($requirements[$type]['test'])) {
86-
throw new \LogicException(sprintf('To use the configuration key "%s" in "bm_backup_manager.stroage.%s.type" you need to install "%s"', $type, $key, $requirements[$type]['package']));
86+
throw new \LogicException(sprintf('To use the configuration key "%s" in "bm_backup_manager.storage.%s.type" you need to install "%s"', $type, $key, $requirements[$type]['package']));
8787
}
8888
}
8989
}

0 commit comments

Comments
 (0)