| @@ -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 | } | 
| @@ -114,19 +114,19 @@ | ||
| 114 | 114 | 'content' => '' | 
| 115 | 115 | ], | 
| 116 | 116 | 'sub' => [ | 
| 117 | - 'pattern' => '/\[sub\](.*?)\[\/sub\]/s', | |
| 118 | - 'replace' => '<sub>$1</sub>', | |
| 119 | - 'content' => '$1' | |
| 117 | + 'pattern' => '/\[sub\](.*?)\[\/sub\]/s', | |
| 118 | + 'replace' => '<sub>$1</sub>', | |
| 119 | + 'content' => '$1' | |
| 120 | 120 | ], | 
| 121 | 121 | 'sup' => [ | 
| 122 | - 'pattern' => '/\[sup\](.*?)\[\/sup\]/s', | |
| 123 | - 'replace' => '<sup>$1</sup>', | |
| 124 | - 'content' => '$1' | |
| 122 | + 'pattern' => '/\[sup\](.*?)\[\/sup\]/s', | |
| 123 | + 'replace' => '<sup>$1</sup>', | |
| 124 | + 'content' => '$1' | |
| 125 | 125 | ], | 
| 126 | 126 | 'small' => [ | 
| 127 | - 'pattern' => '/\[small\](.*?)\[\/small\]/s', | |
| 128 | - 'replace' => '<small>$1</small>', | |
| 129 | - 'content' => '$1' | |
| 127 | + 'pattern' => '/\[small\](.*?)\[\/small\]/s', | |
| 128 | + 'replace' => '<small>$1</small>', | |
| 129 | + 'content' => '$1' | |
| 130 | 130 | ] | 
| 131 | 131 | ]; | 
| 132 | 132 | |