@@ -19,7 +19,7 @@ |
||
| 19 | 19 | */ |
| 20 | 20 | public function register() |
| 21 | 21 | { |
| 22 | - $this->app->bind('bbcode', function () { |
|
| 22 | + $this->app->bind('bbcode', function() { |
|
| 23 | 23 | return new BBCodeParser; |
| 24 | 24 | }); |
| 25 | 25 | } |
@@ -160,7 +160,7 @@ |
||
| 160 | 160 | public function stripBBCodeTags($source) |
| 161 | 161 | { |
| 162 | 162 | foreach ($this->parsers as $name => $parser) { |
| 163 | - $source = $this->searchAndReplace($parser['pattern'].'i', $parser['content']. " ", $source); |
|
| 163 | + $source = $this->searchAndReplace($parser['pattern'].'i', $parser['content']." ", $source); |
|
| 164 | 164 | } |
| 165 | 165 | return $source; |
| 166 | 166 | } |