Passed
Push — master ( f87868...1b5df6 )
by Sebastian
02:44
created
src/Mailcode/Commands/Highlighter.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -51,12 +51,12 @@  discard block
 block discarded – undo
51 51
     {
52 52
         $this->parts[] = $this->renderTag(array('command-name'), $this->command->getName());
53 53
         
54
-        if($this->command->hasType())
54
+        if ($this->command->hasType())
55 55
         {
56 56
             $this->parts[] = ' '.$this->renderTag(array('command-type'), $this->command->getType());
57 57
         }
58 58
         
59
-        if($this->command->requiresParameters())
59
+        if ($this->command->requiresParameters())
60 60
         {
61 61
             $this->parts[] = $this->renderTag(array('hyphen'), ':');
62 62
             $this->parts[] = '<wbr>';
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
     
66 66
     protected function appendParams() : void
67 67
     {
68
-        if($this->command->hasParameters())
68
+        if ($this->command->hasParameters())
69 69
         {
70 70
             $this->parts[] = ' '.$this->renderTag(array('params'), $this->command->getParamsString());
71 71
         }
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
     {
81 81
         $parts = array();
82 82
         
83
-        foreach($classes as $class)
83
+        foreach ($classes as $class)
84 84
         {
85 85
             $parts[] = 'mailcode-'.$class;
86 86
         }
Please login to merge, or discard this patch.