aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/console/command/thumbnail
diff options
context:
space:
mode:
authorTristan Darricau <github@nicofuma.fr>2014-06-13 15:46:09 +0200
committerTristan Darricau <tristan.darricau@sensiolabs.com>2015-07-09 09:21:50 +0200
commit074dfdbdfea364cc2796d69c4d27535ab19fdac7 (patch)
treea1fccbb30ad4a09666dc5ac085d42666847c5cb9 /phpBB/phpbb/console/command/thumbnail
parentd517ed846be665ec04d9ca000d5f26f8a9571206 (diff)
downloadforums-074dfdbdfea364cc2796d69c4d27535ab19fdac7.tar
forums-074dfdbdfea364cc2796d69c4d27535ab19fdac7.tar.gz
forums-074dfdbdfea364cc2796d69c4d27535ab19fdac7.tar.bz2
forums-074dfdbdfea364cc2796d69c4d27535ab19fdac7.tar.xz
forums-074dfdbdfea364cc2796d69c4d27535ab19fdac7.zip
[ticket/12692] Update doc blocks
PHPBB3-12692
Diffstat (limited to 'phpBB/phpbb/console/command/thumbnail')
-rw-r--r--phpBB/phpbb/console/command/thumbnail/delete.php4
-rw-r--r--phpBB/phpbb/console/command/thumbnail/generate.php2
-rw-r--r--phpBB/phpbb/console/command/thumbnail/recreate.php2
3 files changed, 7 insertions, 1 deletions
diff --git a/phpBB/phpbb/console/command/thumbnail/delete.php b/phpBB/phpbb/console/command/thumbnail/delete.php
index 81f1baf1db..707c05ffea 100644
--- a/phpBB/phpbb/console/command/thumbnail/delete.php
+++ b/phpBB/phpbb/console/command/thumbnail/delete.php
@@ -61,7 +61,9 @@ class delete extends \phpbb\console\command\command
/**
* Executes the command thumbnail:delete.
*
- * @param InputInterface $input The input stream used to get the argument and verboe option.
+ * Delete all the existing thumbnails (and update the database in consequences).
+ *
+ * @param InputInterface $input The input stream used to get the argument and verbose option.
* @param OutputInterface $output The output stream, used for printing verbose-mode and error information.
*
* @return int 0 if all is ok, 1 if a thumbnail couldn't be deleted.
diff --git a/phpBB/phpbb/console/command/thumbnail/generate.php b/phpBB/phpbb/console/command/thumbnail/generate.php
index dcf60e4fe2..bbe6677650 100644
--- a/phpBB/phpbb/console/command/thumbnail/generate.php
+++ b/phpBB/phpbb/console/command/thumbnail/generate.php
@@ -74,6 +74,8 @@ class generate extends \phpbb\console\command\command
/**
* Executes the command thumbnail:generate.
*
+ * Generate a thumbnail for all attachments which need one and don't have it yet.
+ *
* @param InputInterface $input The input stream used to get the argument and verboe option.
* @param OutputInterface $output The output stream, used for printing verbose-mode and error information.
*
diff --git a/phpBB/phpbb/console/command/thumbnail/recreate.php b/phpBB/phpbb/console/command/thumbnail/recreate.php
index 569642f2a4..71c5d90654 100644
--- a/phpBB/phpbb/console/command/thumbnail/recreate.php
+++ b/phpBB/phpbb/console/command/thumbnail/recreate.php
@@ -48,6 +48,8 @@ class recreate extends \phpbb\console\command\command
/**
* Executes the command thumbnail:recreate.
*
+ * This command is a "macro" to execute thumbnail:delete and then thumbnail:generate.
+ *
* @param InputInterface $input The input stream used to get the argument and verboe option.
* @param OutputInterface $output The output stream, used for printing verbose-mode and error information.
*