Passed
Push — master ( 12cdea...6379bc )
by Robson
02:38
created
src/MetaTags.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
     protected $data;
18 18
 
19 19
     /** @var array */
20
-    protected $tags = ["property" => "og", "name" => "twitter"];
20
+    protected $tags = [ "property" => "og", "name" => "twitter" ];
21 21
 
22 22
     /**
23 23
      * MetaTags constructor.
Please login to merge, or discard this patch.
src/Optimizer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,8 +26,8 @@
 block discarded – undo
26 26
         $description = $this->filter($description);
27 27
         
28 28
         $this->buildTag("title", $title);
29
-        $this->buildMeta("name", ["description" => $description]);
30
-        $this->buildMeta("name", ["robots" => ($follow ? "index, follow" : "noindex, nofollow")]);
29
+        $this->buildMeta("name", [ "description" => $description ]);
30
+        $this->buildMeta("name", [ "robots" => ($follow ? "index, follow" : "noindex, nofollow") ]);
31 31
         $this->buildLink("canonical", $url);
32 32
 
33 33
         foreach ($this->tags as $meta => $prefix) {
Please login to merge, or discard this patch.
example/index.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
             "pt_BR",
32 32
             "article"
33 33
         )
34
-        ->facebook(null, ["626590460695980", "626590460695981"])//->facebook(null, [9283729732123, 912837192372, 73642734723])
34
+        ->facebook(null, [ "626590460695980", "626590460695981" ])//->facebook(null, [9283729732123, 912837192372, 73642734723])
35 35
         ->render();
36 36
     ?>
37 37
 </head>
Please login to merge, or discard this patch.