@@ -133,7 +133,7 @@ |
||
| 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 | /** |
@@ -98,7 +98,7 @@ discard block |
||
| 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 |
||
| 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. |