Passed
Push — master ( 9a214a...f69e09 )
by Alejandro
02:55 queued 11s
created
src/Compiler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Provider/ServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
src/Provider/ViewServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.