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:
authorMatthieu Napoli <matthieu@mnapoli.fr>2015-03-24 02:15:21 +0300
committerMatthieu Napoli <matthieu@mnapoli.fr>2015-03-24 02:15:21 +0300
commit5e717c28efd335f8b1edef2302e420c302f238a6 (patch)
treee4ddb5a676400eec43307f3eca062373e8960d2f /plugins/CoreConsole
parent940bc892d97b93c3c8f3d84dd0ab3bff83de8666 (diff)
Added command aliases for names that are easier to remember and type
Diffstat (limited to 'plugins/CoreConsole')
-rw-r--r--plugins/CoreConsole/Commands/ClearCaches.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/CoreConsole/Commands/ClearCaches.php b/plugins/CoreConsole/Commands/ClearCaches.php
index 13413c62b7..b88680812f 100644
--- a/plugins/CoreConsole/Commands/ClearCaches.php
+++ b/plugins/CoreConsole/Commands/ClearCaches.php
@@ -22,6 +22,7 @@ class ClearCaches extends ConsoleCommand
protected function configure()
{
$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.');
}