@@ -27,6 +27,9 @@ discard block |
||
27 | 27 | $this->strictMode = $strictMode; |
28 | 28 | } |
29 | 29 | |
30 | + /** |
|
31 | + * @param boolean $isIndex |
|
32 | + */ |
|
30 | 33 | private function getSchema($isIndex) |
31 | 34 | { |
32 | 35 | if ($isIndex) { |
@@ -41,8 +44,8 @@ discard block |
||
41 | 44 | } |
42 | 45 | |
43 | 46 | /** |
44 | - * @param $body |
|
45 | - * @param $filename |
|
47 | + * @param string $body |
|
48 | + * @param string $filename |
|
46 | 49 | * @param bool $isIndex |
47 | 50 | * @throws ValidationFailedException |
48 | 51 | */ |
@@ -30,13 +30,13 @@ discard block |
||
30 | 30 | private function getSchema($isIndex) |
31 | 31 | { |
32 | 32 | if ($isIndex) { |
33 | - return __DIR__ . '/' . self::INDEX; |
|
33 | + return __DIR__.'/'.self::INDEX; |
|
34 | 34 | } |
35 | 35 | |
36 | 36 | if ($this->strictMode) { |
37 | - return __DIR__ . '/' . self::SCHEMA; |
|
37 | + return __DIR__.'/'.self::SCHEMA; |
|
38 | 38 | } else { |
39 | - return __DIR__ . '/' . self::NON_STRICT_SCHEMA; |
|
39 | + return __DIR__.'/'.self::NON_STRICT_SCHEMA; |
|
40 | 40 | } |
41 | 41 | } |
42 | 42 | |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | if (!$valid) { |
57 | 57 | $lastError = libxml_get_last_error(); |
58 | 58 | throw new ValidationFailedException( |
59 | - 'The given sitemap file (' . $filename . ') did not validate against the sitemap schema (last error: ' . str_replace("\n", '', $lastError->message) . ').'); |
|
59 | + 'The given sitemap file ('.$filename.') did not validate against the sitemap schema (last error: '.str_replace("\n", '', $lastError->message).').'); |
|
60 | 60 | } |
61 | 61 | } |
62 | 62 | |
@@ -67,16 +67,16 @@ discard block |
||
67 | 67 | protected function doValidation(ResponseInterface $response) |
68 | 68 | { |
69 | 69 | if ($response instanceof DomAwareResponse) { |
70 | - $body = (string)$response->getHtmlBody(); |
|
70 | + $body = (string) $response->getHtmlBody(); |
|
71 | 71 | } else { |
72 | - $body = (string)$response->getBody(); |
|
72 | + $body = (string) $response->getBody(); |
|
73 | 73 | } |
74 | 74 | |
75 | 75 | // sitemapindex or urlset |
76 | 76 | if (preg_match('/<sitemapindex/', $body)) { |
77 | - $this->validateBody($body, (string)$response->getUri()); |
|
77 | + $this->validateBody($body, (string) $response->getUri()); |
|
78 | 78 | } elseif (preg_match('/<urlset/', $body)) { |
79 | - $this->validateBody($body, (string)$response->getUri(), false); |
|
79 | + $this->validateBody($body, (string) $response->getUri(), false); |
|
80 | 80 | } |
81 | 81 | } |
82 | 82 | } |