Completed
Push — master ( b3bd44...a008aa )
by Nikita
01:51
created
src/SeoServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
src/Title.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
     /**
Please login to merge, or discard this patch.
src/Meta.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
         foreach ($this->attributes as $key => $value) {
56 56
             $attribute = $key.'="'.e($value).'"';
57 57
 
58
-            if (! is_null($attribute)) {
58
+            if (!is_null($attribute)) {
59 59
                 $html[] = $attribute;
60 60
             }
61 61
         }
Please login to merge, or discard this patch.