diff options
author | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2015-07-02 15:26:49 +0200 |
---|---|---|
committer | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2015-07-02 15:26:49 +0200 |
commit | b251d9831476754d6db4f0314cbc7607c57d7128 (patch) | |
tree | 52a3369dfd94c5496d576a1cb05c7b505d27a348 /phpBB/phpbb | |
parent | 31bd69668033e27a475b57cec59eb5642cad0dfb (diff) | |
download | forums-b251d9831476754d6db4f0314cbc7607c57d7128.tar forums-b251d9831476754d6db4f0314cbc7607c57d7128.tar.gz forums-b251d9831476754d6db4f0314cbc7607c57d7128.tar.bz2 forums-b251d9831476754d6db4f0314cbc7607c57d7128.tar.xz forums-b251d9831476754d6db4f0314cbc7607c57d7128.zip |
[ticket/13891] Fix CS
PHPBB3-13891
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r-- | phpBB/phpbb/console/command/reparser/reparse.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/console/command/reparser/reparse.php b/phpBB/phpbb/console/command/reparser/reparse.php index c261507a57..52075dd0ac 100644 --- a/phpBB/phpbb/console/command/reparser/reparse.php +++ b/phpBB/phpbb/console/command/reparser/reparse.php @@ -143,7 +143,7 @@ class reparse extends \phpbb\console\command\command $progress->setFormat('<info>[%percent:3s%%]</info> %message%'); $progress->setOverwrite(false); } - elseif ($output->getVerbosity() >= OutputInterface::VERBOSITY_VERY_VERBOSE) + else if ($output->getVerbosity() >= OutputInterface::VERBOSITY_VERY_VERBOSE) { $progress->setFormat('<info>[%current:s%/%max:s%]</info><comment>[%elapsed%/%estimated%][%memory%]</comment> %message%'); $progress->setOverwrite(false); |