@@ -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 | { |
@@ -2,8 +2,6 @@ |
||
2 | 2 | |
3 | 3 | namespace whm\Smoke\Http; |
4 | 4 | |
5 | -use Monolog\Handler\StreamHandler; |
|
6 | -use Monolog\Logger; |
|
7 | 5 | use phm\HttpWebdriverClient\Http\Client\Chrome\ChromeClient as phmChromeClient; |
8 | 6 | use phm\HttpWebdriverClient\Http\Client\Decorator\FileCacheDecorator; |
9 | 7 | use phm\HttpWebdriverClient\Http\Client\Decorator\LoggerDecorator; |
@@ -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.'); |