@@ -12,7 +12,7 @@ |
||
12 | 12 | */ |
13 | 13 | protected function compileComponentTags($value) |
14 | 14 | { |
15 | - if (! $this->compilesComponentTags) { |
|
15 | + if (!$this->compilesComponentTags) { |
|
16 | 16 | return $value; |
17 | 17 | } |
18 | 18 |
@@ -33,7 +33,7 @@ |
||
33 | 33 | { |
34 | 34 | (new ViewServiceProvider($this->app))->register(); |
35 | 35 | |
36 | - $this->app->bind(ViewFactoryContract::class, function ($app) { |
|
36 | + $this->app->bind(ViewFactoryContract::class, function($app) { |
|
37 | 37 | return $app['view']; |
38 | 38 | }); |
39 | 39 | } |
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function registerBladeCompiler() |
15 | 15 | { |
16 | - $this->app->singleton('blade.compiler', function ($app) { |
|
16 | + $this->app->singleton('blade.compiler', function($app) { |
|
17 | 17 | return new Compiler($app['files'], $app['config']['view.compiled']); |
18 | 18 | }); |
19 | 19 | } |