Completed
Push — master ( c607ee...214549 )
by Michał
02:06
created
Descriptor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -133,7 +133,7 @@
 block discarded – undo
133 133
             $output .= ' [--] ';
134 134
         }
135 135
 
136
-        return $output . $this->getInputArgumentsSynopsis($inputArguments, $options);
136
+        return $output.$this->getInputArgumentsSynopsis($inputArguments, $options);
137 137
     }
138 138
 
139 139
     /**
Please login to merge, or discard this patch.
output/formatting/Formatter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
             }
99 99
         }
100 100
 
101
-        return $out . $this->apply(substr($text, $offset), $decorated);
101
+        return $out.$this->apply(substr($text, $offset), $decorated);
102 102
     }
103 103
 
104 104
     /**
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
      * @param   bool                $opening    Whether it was an opening tag.
146 146
      * @return  interfaces\Style                The Style matching the tag, if applicable.
147 147
      */
148
-    protected function handleFormattingTag(string $tag, bool $opening) : ?interfaces\Style
148
+    protected function handleFormattingTag(string $tag, bool $opening) : ? interfaces\Style
149 149
     {
150 150
         // First attempt to grab a Style matching the tag from our Collection. If none is found,
151 151
         // see if it's an inline style.
Please login to merge, or discard this patch.