Passed
Pull Request — master (#4)
by lee
03:09
created
src/Output/ListFormatter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
      */
66 66
     protected function handleRow(string $row)
67 67
     {
68
-        switch($this->getRowType($row)) {
68
+        switch ($this->getRowType($row)) {
69 69
             case self::ROW_TYPE_EMPTY:
70 70
                 $this->clearCommentBuffer();
71 71
                 break;
Please login to merge, or discard this patch.
src/Operator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
      */
60 60
     public function __construct(Parser $parser = null, Runner $runner = null)
61 61
     {
62
-        $this->parser = empty($parser) ? new Parser\Vixie()  : $parser;
62
+        $this->parser = empty($parser) ? new Parser\Vixie() : $parser;
63 63
         $this->runner = empty($runner) ? new Runner\Simple() : $runner;
64 64
     }
65 65
 
Please login to merge, or discard this patch.
src/Cli/Executable.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@
 block discarded – undo
121 121
             // pipe both outputs to new crontab
122 122
             $pipe = new CliExecutable($this->cmd);
123 123
             $pipe->addOptionIfNotEmpty('-u', $this->user, true, ' ')
124
-                 ->addOption('-');
124
+                    ->addOption('-');
125 125
             $line->pipeOutputTo($pipe);
126 126
         }
127 127
 
Please login to merge, or discard this patch.
src/Job.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@
 block discarded – undo
89 89
     {
90 90
         $doc = '';
91 91
         foreach ($this->comments as $comment) {
92
-            $doc .=   '# ' . $comment . PHP_EOL;
92
+            $doc .= '# ' . $comment . PHP_EOL;
93 93
         }
94 94
         return $doc;
95 95
     }
Please login to merge, or discard this patch.