| @@ -16,11 +16,18 @@ | ||
| 16 | 16 | |
| 17 | 17 |      protected $contentTypes = array('text/xml', 'application/xml'); | 
| 18 | 18 | |
| 19 | + /** | |
| 20 | + * @param boolean $isIndex | |
| 21 | + */ | |
| 19 | 22 | private function getSchema($isIndex) | 
| 20 | 23 |      { | 
| 21 | 24 | return ($isIndex) ? __DIR__ . '/' . self::INDEX : __DIR__ . '/' . self::SCHEMA; | 
| 22 | 25 | } | 
| 23 | 26 | |
| 27 | + /** | |
| 28 | + * @param \Psr\Http\Message\StreamInterface $body | |
| 29 | + * @param string $filename | |
| 30 | + */ | |
| 24 | 31 | private function validateBody($body, $filename, $isIndex = TRUE) | 
| 25 | 32 |      { | 
| 26 | 33 | $dom = new \DOMDocument(); | 
| @@ -27,13 +27,13 @@ discard block | ||
| 27 | 27 | private function getSchema($isIndex) | 
| 28 | 28 |      { | 
| 29 | 29 |          if ($isIndex) { | 
| 30 | - return __DIR__ . '/' . self::INDEX; | |
| 30 | + return __DIR__.'/'.self::INDEX; | |
| 31 | 31 | } | 
| 32 | 32 | |
| 33 | 33 |          if ($this->strictMode) { | 
| 34 | - return __DIR__ . '/' . self::SCHEMA; | |
| 34 | + return __DIR__.'/'.self::SCHEMA; | |
| 35 | 35 |          } else { | 
| 36 | - return __DIR__ . '/' . self::NON_STRICT_SCHEMA; | |
| 36 | + return __DIR__.'/'.self::NON_STRICT_SCHEMA; | |
| 37 | 37 | } | 
| 38 | 38 | } | 
| 39 | 39 | |
| @@ -46,7 +46,7 @@ discard block | ||
| 46 | 46 |          if (!$valid) { | 
| 47 | 47 | $lastError = libxml_get_last_error(); | 
| 48 | 48 | throw new ValidationFailedException( | 
| 49 | -                'The given sitemap file (' . $filename . ') did not validate against the sitemap schema (last error: ' . str_replace("\n", '', $lastError->message) . ').'); | |
| 49 | +                'The given sitemap file ('.$filename.') did not validate against the sitemap schema (last error: '.str_replace("\n", '', $lastError->message).').'); | |
| 50 | 50 | } | 
| 51 | 51 | } | 
| 52 | 52 | |
| @@ -79,10 +79,10 @@ discard block | ||
| 79 | 79 | // sitemapindex or urlset | 
| 80 | 80 |          if (preg_match('/<sitemapindex/', $body)) { | 
| 81 | 81 | |
| 82 | - $this->validateBody($body, (string)$response->getUri()); | |
| 82 | + $this->validateBody($body, (string) $response->getUri()); | |
| 83 | 83 | |
| 84 | 84 |          } elseif (preg_match('/<urlset/', $body)) { | 
| 85 | - $this->validateBody($body, (string)$response->getUri(), FALSE); | |
| 85 | + $this->validateBody($body, (string) $response->getUri(), FALSE); | |
| 86 | 86 | } | 
| 87 | 87 | } | 
| 88 | 88 | } | 
| @@ -45,7 +45,7 @@ | ||
| 45 | 45 | |
| 46 | 46 |          if ($error === true) { | 
| 47 | 47 |              $allNotFoundSelectors = implode(', ', $snotFoundSelectors); | 
| 48 | -            throw new ValidationFailedException('CSS Selector ' . $allNotFoundSelectors .' not found in DOM.'); | |
| 48 | +            throw new ValidationFailedException('CSS Selector '.$allNotFoundSelectors.' not found in DOM.'); | |
| 49 | 49 | } | 
| 50 | 50 | } | 
| 51 | 51 | } |