summaryrefslogtreecommitdiffstats
path: root/lib/Command
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Command')
-rw-r--r--lib/Command/Fediverse.php4
-rw-r--r--lib/Command/MigrateAlpha3.php4
-rw-r--r--lib/Command/NoteCreate.php12
-rw-r--r--lib/Command/QueueStatus.php2
4 files changed, 11 insertions, 11 deletions
diff --git a/lib/Command/Fediverse.php b/lib/Command/Fediverse.php
index 0a9e7535..e2801bbd 100644
--- a/lib/Command/Fediverse.php
+++ b/lib/Command/Fediverse.php
@@ -58,8 +58,8 @@ class Fediverse extends Base {
parent::configure();
$this->setName('social:fediverse')
->addOption(
- 'type', 't', InputArgument::OPTIONAL,
- 'Change the type of access management', ''
+ 'type', 't', InputArgument::OPTIONAL,
+ 'Change the type of access management', ''
)
->addArgument('action', InputArgument::OPTIONAL, 'add/remove/test address', '')
->addArgument('address', InputArgument::OPTIONAL, 'address/host', '')
diff --git a/lib/Command/MigrateAlpha3.php b/lib/Command/MigrateAlpha3.php
index e8f9cbac..05774920 100644
--- a/lib/Command/MigrateAlpha3.php
+++ b/lib/Command/MigrateAlpha3.php
@@ -119,10 +119,10 @@ class MigrateAlpha3 extends Base {
$this->setName('social:migrate:alpha3')
->setDescription('Trying to migrate old data to Alpha3')
->addOption(
- 'remove-migrated-tables', '', InputOption::VALUE_NONE, 'Remove old table once copy is done'
+ 'remove-migrated-tables', '', InputOption::VALUE_NONE, 'Remove old table once copy is done'
)
->addOption(
- 'force-remove-old-tables', '', InputOption::VALUE_NONE, 'Force remove old tables'
+ 'force-remove-old-tables', '', InputOption::VALUE_NONE, 'Force remove old tables'
);
}
diff --git a/lib/Command/NoteCreate.php b/lib/Command/NoteCreate.php
index 2aed76e4..d5ea7827 100644
--- a/lib/Command/NoteCreate.php
+++ b/lib/Command/NoteCreate.php
@@ -96,18 +96,18 @@ class NoteCreate extends Base {
parent::configure();
$this->setName('social:note:create')
->addOption(
- 'replyTo', 'r', InputOption::VALUE_OPTIONAL, 'in reply to an existing thread'
+ 'replyTo', 'r', InputOption::VALUE_OPTIONAL, 'in reply to an existing thread'
)
->addOption(
- 'to', 't', InputOption::VALUE_OPTIONAL, 'mentioning people'
+ 'to', 't', InputOption::VALUE_OPTIONAL, 'mentioning people'
)
->addOption(
- 'type', 'y', InputOption::VALUE_OPTIONAL,
- 'type: public (default), followers, unlisted, direct'
+ 'type', 'y', InputOption::VALUE_OPTIONAL,
+ 'type: public (default), followers, unlisted, direct'
)
->addOption(
- 'hashtag', 'g', InputOption::VALUE_OPTIONAL,
- 'hashtag, without the leading #'
+ 'hashtag', 'g', InputOption::VALUE_OPTIONAL,
+ 'hashtag, without the leading #'
)
->addArgument('user_id', InputArgument::REQUIRED, 'userId of the author')
->addArgument('content', InputArgument::REQUIRED, 'content of the post')
diff --git a/lib/Command/QueueStatus.php b/lib/Command/QueueStatus.php
index 3de1e7ba..2e2bbbc3 100644
--- a/lib/Command/QueueStatus.php
+++ b/lib/Command/QueueStatus.php
@@ -73,7 +73,7 @@ class QueueStatus extends Base {
parent::configure();
$this->setName('social:queue:status')
->addOption(
- 'token', 't', InputOption::VALUE_OPTIONAL, 'token of a request'
+ 'token', 't', InputOption::VALUE_OPTIONAL, 'token of a request'
)
->setDescription('Return status on the request queue');
}