Completed
Push — master ( 4c10a9...2bda95 )
by Shcherbak
01:56
created
src/ProgressPanel/ProgressPanel.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
      */
23 23
     public function __construct(OutputInterface $output, $max = 0) {
24 24
 
25
-      static::setPlaceholderFormatterDefinition('current', function (ProgressBar $bar) {
25
+      static::setPlaceholderFormatterDefinition('current', function(ProgressBar $bar) {
26 26
         return $bar->getProgress();
27 27
       });
28 28
 
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
       $this->setMessage('', 'data');
37 37
       $this->setMessage('');
38 38
 
39
-      static::setPlaceholderFormatterDefinition('itemsPerSecond', function (ProgressBar $bar) {
39
+      static::setPlaceholderFormatterDefinition('itemsPerSecond', function(ProgressBar $bar) {
40 40
 
41 41
         $seconds = (time() - $bar->getStartTime());
42 42
         $seconds = empty($seconds) ? 1 : $seconds;
Please login to merge, or discard this patch.