@@ -32,7 +32,7 @@ discard block |
||
| 32 | 32 | |
| 33 | 33 | protected function bootDirectives() |
| 34 | 34 | { |
| 35 | - Blade::directive('title', function ($expression) { |
|
| 35 | + Blade::directive('title', function($expression) { |
|
| 36 | 36 | return "<?php app('seo.title')->append($expression); ?>"; |
| 37 | 37 | }); |
| 38 | 38 | } |
@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | */ |
| 45 | 45 | public function register() |
| 46 | 46 | { |
| 47 | - $this->app->singleton('seo.title', function ($app) { |
|
| 47 | + $this->app->singleton('seo.title', function($app) { |
|
| 48 | 48 | return new Title($app->make('config')->get('seo.title')); |
| 49 | 49 | }); |
| 50 | 50 | } |
@@ -75,7 +75,7 @@ discard block |
||
| 75 | 75 | */ |
| 76 | 76 | public function setSeparator($separator) |
| 77 | 77 | { |
| 78 | - if (! is_null($separator)) { |
|
| 78 | + if (!is_null($separator)) { |
|
| 79 | 79 | $this->separator = (string) $separator; |
| 80 | 80 | } |
| 81 | 81 | |
@@ -100,7 +100,7 @@ discard block |
||
| 100 | 100 | */ |
| 101 | 101 | public function setSiteName($siteName) |
| 102 | 102 | { |
| 103 | - if (! is_null($siteName)) { |
|
| 103 | + if (!is_null($siteName)) { |
|
| 104 | 104 | $this->siteName = (string) $siteName; |
| 105 | 105 | } |
| 106 | 106 | |
@@ -204,7 +204,7 @@ discard block |
||
| 204 | 204 | */ |
| 205 | 205 | public function isSiteNameVisible() |
| 206 | 206 | { |
| 207 | - return ! is_null($this->siteName) && $this->siteNameVisibility; |
|
| 207 | + return !is_null($this->siteName) && $this->siteNameVisibility; |
|
| 208 | 208 | } |
| 209 | 209 | |
| 210 | 210 | /** |