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

github.com/nextcloud/fulltextsearch.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxence Lange <maxence@artificial-owl.com>2019-02-20 19:43:24 +0300
committerGitHub <noreply@github.com>2019-02-20 19:43:24 +0300
commit394ef931ba321319752b8d5554a43d359959c95a (patch)
tree8c880b9f3a73beedc79c709422fd0441a3672e61
parentfb4d367f531d70676a0dfd7c442c84b8ee0f8325 (diff)
parent25b37a76c774fa6fbb3e19729c6762662422ff6b (diff)
Merge pull request #457 from nextcloud/backport/455/stable14
[stable14] Use capital letter for all CLI description
-rw-r--r--lib/Command/Reset.php2
-rw-r--r--lib/Command/Stop.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/Command/Reset.php b/lib/Command/Reset.php
index 2a7cee1..6d16489 100644
--- a/lib/Command/Reset.php
+++ b/lib/Command/Reset.php
@@ -70,7 +70,7 @@ class Reset extends ExtendedBase {
protected function configure() {
parent::configure();
$this->setName('fulltextsearch:reset')
- ->setDescription('reset index')
+ ->setDescription('Reset index')
->addArgument('provider', InputArgument::OPTIONAL, 'provider');
}
diff --git a/lib/Command/Stop.php b/lib/Command/Stop.php
index 63b039b..6dd7745 100644
--- a/lib/Command/Stop.php
+++ b/lib/Command/Stop.php
@@ -59,7 +59,7 @@ class Stop extends ExtendedBase {
protected function configure() {
parent::configure();
$this->setName('fulltextsearch:stop')
- ->setDescription('stop all indexing');
+ ->setDescription('Stop all indexing');
}