Completed
Push — master ( 90301e...8ba491 )
by Nils
02:27
created
src/Rules/Xml/Sitemap/ValidRule.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -35,13 +35,13 @@  discard block
 block discarded – undo
35 35
     private function getSchema($isIndex)
36 36
     {
37 37
         if ($isIndex) {
38
-            return __DIR__ . '/' . self::INDEX;
38
+            return __DIR__.'/'.self::INDEX;
39 39
         }
40 40
 
41 41
         if ($this->strictMode) {
42
-            return __DIR__ . '/' . self::SCHEMA;
42
+            return __DIR__.'/'.self::SCHEMA;
43 43
         } else {
44
-            return __DIR__ . '/' . self::NON_STRICT_SCHEMA;
44
+            return __DIR__.'/'.self::NON_STRICT_SCHEMA;
45 45
         }
46 46
     }
47 47
 
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
         if (!$valid) {
62 62
             $lastError = libxml_get_last_error();
63 63
             throw new ValidationFailedException(
64
-                'The given sitemap file (' . $filename . ') did not validate against the sitemap schema (last error: ' . str_replace("\n", '', $lastError->message) . ').');
64
+                'The given sitemap file ('.$filename.') did not validate against the sitemap schema (last error: '.str_replace("\n", '', $lastError->message).').');
65 65
         }
66 66
     }
67 67
 
@@ -74,9 +74,9 @@  discard block
 block discarded – undo
74 74
         $contentType = $response->getHeader('content-type');
75 75
 
76 76
         if ($response instanceof DomAwareResponse) {
77
-            $body = (string)$response->getHtmlBody();
77
+            $body = (string) $response->getHtmlBody();
78 78
         } else {
79
-            $body = (string)$response->getBody();
79
+            $body = (string) $response->getBody();
80 80
         }
81 81
 
82 82
         if (is_array($contentType) && in_array(strtolower($contentType[0]), $this->gzipContentTypes)) {
@@ -85,9 +85,9 @@  discard block
 block discarded – undo
85 85
 
86 86
         // sitemapindex or urlset
87 87
         if (preg_match('/<sitemapindex/', $body)) {
88
-            $this->validateBody($body, (string)$response->getUri());
88
+            $this->validateBody($body, (string) $response->getUri());
89 89
         } elseif (preg_match('/<urlset/', $body)) {
90
-            $this->validateBody($body, (string)$response->getUri(), false);
90
+            $this->validateBody($body, (string) $response->getUri(), false);
91 91
         } else {
92 92
             throw new ValidationFailedException('The given document is not a valid sitemap. Nether sitemapindex nor urlset element was found. ');
93 93
         }
Please login to merge, or discard this patch.