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:
authorLukas Winkler <git@lw1.at>2021-04-12 20:38:50 +0300
committerGitHub <noreply@github.com>2021-04-12 20:38:50 +0300
commit44f93e15eba13d4a3a7531af228abf8d4509ab68 (patch)
tree043dcac8fdf52aa9355cc00aa63aedb1ae85e2f6 /plugins/CoreConsole
parent41b8240fcf79291dbabb2e30a38f321d44b64cf5 (diff)
fix typo in cache:clear (#17448)
Diffstat (limited to 'plugins/CoreConsole')
-rw-r--r--plugins/CoreConsole/Commands/ClearCaches.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/CoreConsole/Commands/ClearCaches.php b/plugins/CoreConsole/Commands/ClearCaches.php
index 9a8f66fd2f..d6de6d130c 100644
--- a/plugins/CoreConsole/Commands/ClearCaches.php
+++ b/plugins/CoreConsole/Commands/ClearCaches.php
@@ -22,7 +22,7 @@ class ClearCaches extends ConsoleCommand
{
$this->setName('core:clear-caches');
$this->setAliases(array('cache:clear'));
- $this->setDescription('Cleares all caches. This command can be useful for instance after updating Piwik files manually.');
+ $this->setDescription('Clears all caches. This command can be useful for instance after updating Matomo files manually.');
}
/**