Completed
Push — develop ( dac91a...dc8379 )
by Novikov
9s
created
Manager/Cron.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -517,15 +517,15 @@
 block discarded – undo
517 517
             $cronLine .= '#suspended: ';
518 518
         }
519 519
 
520
-        $cronLine .= $this->getExpression() . ' ' . $this->command;
520
+        $cronLine .= $this->getExpression().' '.$this->command;
521 521
         if ('' != $this->logFile) {
522
-            $cronLine .= ' > ' . $this->logFile;
522
+            $cronLine .= ' > '.$this->logFile;
523 523
         }
524 524
         if ('' != $this->errorFile) {
525
-            $cronLine .= ' 2> ' . $this->errorFile;
525
+            $cronLine .= ' 2> '.$this->errorFile;
526 526
         }
527 527
         if ('' != $this->comment) {
528
-            $cronLine .= ' #' . $this->comment;
528
+            $cronLine .= ' #'.$this->comment;
529 529
         }
530 530
 
531 531
         return $cronLine;
Please login to merge, or discard this patch.