Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'core/Plugin/ConsoleCommand.php')
-rw-r--r--core/Plugin/ConsoleCommand.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Plugin/ConsoleCommand.php b/core/Plugin/ConsoleCommand.php
index 91d18c5c77..e009f058e7 100644
--- a/core/Plugin/ConsoleCommand.php
+++ b/core/Plugin/ConsoleCommand.php
@@ -39,7 +39,7 @@ class ConsoleCommand extends SymfonyCommand
$value = $input->getOption($name);
if ($option->isValueRequired() && empty($value)) {
- throw new \InvalidArgumentException(sprintf('The required option %s is not set', $name));
+ throw new \InvalidArgumentException(sprintf('The required option --%s is not set', $name));
}
}
}