Passed
Push — master ( abe9d4...f9c79d )
by Vladimir
04:18
created
src/drivers/Tumblr.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@
 block discarded – undo
102 102
         }
103 103
 
104 104
         if (!empty($this->tags)) {
105
-            $this->appendToData('tags', implode(',' , $this->tags));
105
+            $this->appendToData('tags', implode(',', $this->tags));
106 106
         }
107 107
     }
108 108
 
Please login to merge, or discard this patch.
src/drivers/Twitter.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -57,10 +57,10 @@
 block discarded – undo
57 57
     protected function getMetaTags()
58 58
     {
59 59
         return [
60
-            ['name' => 'twitter:card',         'content' => 'summary_large_image'],
61
-            ['name' => 'twitter:title',        'content' => '{title}'],
62
-            ['name' => 'twitter:description',  'content' => '{description}'],
63
-            ['name' => 'twitter:image',        'content' => '{imageUrl}']
60
+            ['name' => 'twitter:card', 'content' => 'summary_large_image'],
61
+            ['name' => 'twitter:title', 'content' => '{title}'],
62
+            ['name' => 'twitter:description', 'content' => '{description}'],
63
+            ['name' => 'twitter:image', 'content' => '{imageUrl}']
64 64
         ];
65 65
     }
66 66
 }
Please login to merge, or discard this patch.
src/drivers/Facebook.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -40,11 +40,11 @@
 block discarded – undo
40 40
     protected function getMetaTags()
41 41
     {
42 42
         return [
43
-            ['property' => 'og:url',         'content' => '{url}'],
44
-            ['property' => 'og:type',        'content' => 'website'],
45
-            ['property' => 'og:title',       'content' => '{title}'],
43
+            ['property' => 'og:url', 'content' => '{url}'],
44
+            ['property' => 'og:type', 'content' => 'website'],
45
+            ['property' => 'og:title', 'content' => '{title}'],
46 46
             ['property' => 'og:description', 'content' => '{description}'],
47
-            ['property' => 'og:image',       'content' => '{imageUrl}'],
47
+            ['property' => 'og:image', 'content' => '{imageUrl}'],
48 48
         ];
49 49
     }
50 50
 }
Please login to merge, or discard this patch.