Passed
Pull Request — master (#3)
by
unknown
02:22
created
src/Optimizer.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -26,8 +26,8 @@  discard block
 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) {
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
             return $this;
132 132
         }
133 133
 
134
-        if($admins) {
134
+        if ($admins) {
135 135
             foreach ($admins as $admin) {
136 136
                 $fb = $this->meta->addChild("meta");
137 137
                 $fb->addAttribute("property", "fb:admins");
Please login to merge, or discard this patch.