@@ -29,6 +29,7 @@ discard block |
||
29 | 29 | * @param $status |
30 | 30 | * @param $value |
31 | 31 | * @param $message |
32 | + * @param string $url |
|
32 | 33 | */ |
33 | 34 | public function __construct($status, $message = '', $value = null, $url = null) |
34 | 35 | { |
@@ -47,7 +48,7 @@ discard block |
||
47 | 48 | } |
48 | 49 | |
49 | 50 | /** |
50 | - * @param array $attributes |
|
51 | + * @param array $attribute |
|
51 | 52 | */ |
52 | 53 | public function addAttribute(Attribute $attribute) |
53 | 54 | { |
@@ -71,7 +72,7 @@ discard block |
||
71 | 72 | } |
72 | 73 | |
73 | 74 | /** |
74 | - * @return mixed |
|
75 | + * @return string |
|
75 | 76 | */ |
76 | 77 | public function getMessage() |
77 | 78 | { |
@@ -21,12 +21,12 @@ discard block |
||
21 | 21 | |
22 | 22 | private function getSchema() |
23 | 23 | { |
24 | - return __DIR__ . '/' . self::SCHEMA; |
|
24 | + return __DIR__.'/'.self::SCHEMA; |
|
25 | 25 | } |
26 | 26 | |
27 | 27 | public function doValidation(ResponseInterface $response) |
28 | 28 | { |
29 | - $body = (string)$response->getBody(); |
|
29 | + $body = (string) $response->getBody(); |
|
30 | 30 | |
31 | 31 | if (preg_match('/<rss/', $body)) { |
32 | 32 | libxml_clear_errors(); |
@@ -35,8 +35,8 @@ discard block |
||
35 | 35 | $lastError = libxml_get_last_error(); |
36 | 36 | if ($lastError) { |
37 | 37 | throw new ValidationFailedException( |
38 | - 'The given xml file is not well formed (last error: ' . |
|
39 | - str_replace("\n", '', $lastError->message) . ').'); |
|
38 | + 'The given xml file is not well formed (last error: '. |
|
39 | + str_replace("\n", '', $lastError->message).').'); |
|
40 | 40 | } |
41 | 41 | $valid = @$dom->schemaValidate($this->getSchema()); |
42 | 42 | if (!$valid) { |
@@ -44,11 +44,11 @@ discard block |
||
44 | 44 | $lastErrorMessage = str_replace("\n", '', $lastError->message); |
45 | 45 | |
46 | 46 | if ($response instanceof UriAwareResponse) { |
47 | - $toolUrl = sprintf(self::PUBLIC_SERVICE, urlencode((string)$response->getUri())); |
|
47 | + $toolUrl = sprintf(self::PUBLIC_SERVICE, urlencode((string) $response->getUri())); |
|
48 | 48 | } else { |
49 | 49 | $toolUrl = ''; |
50 | 50 | } |
51 | - return new CheckResult(CheckResult::STATUS_FAILURE, 'The given xml file is not a valid rss file (last error: ' . $lastErrorMessage . ').', null, $toolUrl); |
|
51 | + return new CheckResult(CheckResult::STATUS_FAILURE, 'The given xml file is not a valid rss file (last error: '.$lastErrorMessage.').', null, $toolUrl); |
|
52 | 52 | } |
53 | 53 | } |
54 | 54 | return new CheckResult(CheckResult::STATUS_SUCCESS, 'The given rss file is valid.'); |
@@ -50,7 +50,7 @@ |
||
50 | 50 | $configArray = $this->getConfigArray($configFile, true); |
51 | 51 | |
52 | 52 | if (is_string($configArray)) { |
53 | - throw new \RuntimeException('Unable to load config file. Please check ' . $configFile); |
|
53 | + throw new \RuntimeException('Unable to load config file. Please check '.$configFile); |
|
54 | 54 | } |
55 | 55 | |
56 | 56 | $this->config = new Configuration(new Uri('http://www.example.com'), $dispatcher, $configArray); |