From dd131d74390a8c8766c28734efebede681e3b794 Mon Sep 17 00:00:00 2001
From: JoshyPHP <s9e.dev@gmail.com>
Date: Thu, 2 Jul 2015 12:22:51 +0200
Subject: [PATCH] [ticket/13891] Added elapsed/estimated time and memory to the
 progress bar

Also fixed some extra whitespace.

PHPBB3-13891
---
 phpBB/phpbb/console/command/reparser/reparse.php | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/phpBB/phpbb/console/command/reparser/reparse.php b/phpBB/phpbb/console/command/reparser/reparse.php
index 2220e53193..3aac0e3e93 100644
--- a/phpBB/phpbb/console/command/reparser/reparse.php
+++ b/phpBB/phpbb/console/command/reparser/reparse.php
@@ -27,8 +27,8 @@ class reparse extends \phpbb\console\command\command
 	protected $reparsers;
 
 	/**
-	 * @var SymfonyStyle
-	 */
+	* @var SymfonyStyle
+	*/
 	protected $io;
 
 	/**
@@ -141,7 +141,7 @@ class reparse extends \phpbb\console\command\command
 		$progress = $this->io->createProgressBar($max);
 		$progress->setFormat(
 			"    %current:s%/%max:s% %bar%  %percent:3s%%\n" .
-			"             %message%\n");
+			"        %message% %elapsed:6s%/%estimated:-6s% %memory:6s%\n");
 		$progress->setBarWidth(60);
 		$progress->setMessage('');