@@ -39,12 +39,12 @@ |
||
| 39 | 39 | $error = true; |
| 40 | 40 | $lastError = libxml_get_last_error(); |
| 41 | 41 | |
| 42 | - $messageParts[] = $xsdFile['xsdfilename'] . ' - ' . $xsdFile['xsdfileurl'] . '(last error: ' . str_replace("\n", '', $lastError->message) . ').'; |
|
| 42 | + $messageParts[] = $xsdFile['xsdfilename'].' - '.$xsdFile['xsdfileurl'].'(last error: '.str_replace("\n", '', $lastError->message).').'; |
|
| 43 | 43 | } |
| 44 | 44 | } |
| 45 | 45 | |
| 46 | 46 | if ($error === true) { |
| 47 | - $message = 'XML file (' . $filename . ') does not validate against the following XSD files: ' . implode(', ', $messageParts); |
|
| 47 | + $message = 'XML file ('.$filename.') does not validate against the following XSD files: '.implode(', ', $messageParts); |
|
| 48 | 48 | throw new ValidationFailedException($message); |
| 49 | 49 | } |
| 50 | 50 | } |
@@ -36,7 +36,7 @@ discard block |
||
| 36 | 36 | { |
| 37 | 37 | $data = json_decode($response->getBody()); |
| 38 | 38 | if ($data === null) { |
| 39 | - throw new ValidationFailedException("The given JSON data can not be validated (last error: '" . $this->json_errors[json_last_error()] . "')."); |
|
| 39 | + throw new ValidationFailedException("The given JSON data can not be validated (last error: '".$this->json_errors[json_last_error()]."')."); |
|
| 40 | 40 | } else { |
| 41 | 41 | $error = false; |
| 42 | 42 | $messageParts = array(); |
@@ -53,14 +53,14 @@ discard block |
||
| 53 | 53 | $error = true; |
| 54 | 54 | $errorMessage = ''; |
| 55 | 55 | foreach ($validator->getErrors() as $error) { |
| 56 | - $errorMessage = $errorMessage . sprintf("[%s] %s\n", $error['property'], $error['message']); |
|
| 56 | + $errorMessage = $errorMessage.sprintf("[%s] %s\n", $error['property'], $error['message']); |
|
| 57 | 57 | } |
| 58 | - $messageParts[] = $jsonSchemaFile['jsonschemafilename'] . ' - ' . $jsonSchemaFile['jsonschemafileurl'] . '(last error: ' . $errorMessage . ').'; |
|
| 58 | + $messageParts[] = $jsonSchemaFile['jsonschemafilename'].' - '.$jsonSchemaFile['jsonschemafileurl'].'(last error: '.$errorMessage.').'; |
|
| 59 | 59 | } |
| 60 | 60 | } |
| 61 | 61 | |
| 62 | 62 | if ($error === true) { |
| 63 | - $message = 'JSON file (' . (string) $response->getUri() . ') does not validate against the following JSON Schema files: ' . implode(', ', $messageParts); |
|
| 63 | + $message = 'JSON file ('.(string) $response->getUri().') does not validate against the following JSON Schema files: '.implode(', ', $messageParts); |
|
| 64 | 64 | throw new ValidationFailedException($message); |
| 65 | 65 | } |
| 66 | 66 | } |
@@ -29,12 +29,12 @@ discard block |
||
| 29 | 29 | |
| 30 | 30 | foreach ($this->regExs as $regEx) { |
| 31 | 31 | if ($regEx['isRegEx']) { |
| 32 | - if (preg_match('^' . $regEx['pattern'] . '^', (string) $response->getBody()) === 0) { |
|
| 33 | - $errors[] = 'Regular expression: ' . $regEx['pattern']; |
|
| 32 | + if (preg_match('^'.$regEx['pattern'].'^', (string) $response->getBody()) === 0) { |
|
| 33 | + $errors[] = 'Regular expression: '.$regEx['pattern']; |
|
| 34 | 34 | } |
| 35 | 35 | } else { |
| 36 | - if (preg_match('^' . preg_quote($regEx['pattern']) . '^', (string) $response->getBody()) === 0) { |
|
| 37 | - $errors[] = 'Text: ' . $regEx['pattern']; |
|
| 36 | + if (preg_match('^'.preg_quote($regEx['pattern']).'^', (string) $response->getBody()) === 0) { |
|
| 37 | + $errors[] = 'Text: '.$regEx['pattern']; |
|
| 38 | 38 | } |
| 39 | 39 | } |
| 40 | 40 | } |
@@ -43,7 +43,7 @@ discard block |
||
| 43 | 43 | $errorString = 'The following text elements where not found: <ul>'; |
| 44 | 44 | |
| 45 | 45 | foreach ($errors as $error) { |
| 46 | - $errorString .= '<li>' . $error . '</li>'; |
|
| 46 | + $errorString .= '<li>'.$error.'</li>'; |
|
| 47 | 47 | } |
| 48 | 48 | |
| 49 | 49 | $errorString .= '</ul>'; |
@@ -15,7 +15,7 @@ |
||
| 15 | 15 | { |
| 16 | 16 | if (($response->getStatus() < 300 || $response->getStatus() >= 400) && $response->getContentType() === 'text/html') { |
| 17 | 17 | if (stripos($response->getBody(), '</html>') === false) { |
| 18 | - throw new ValidationFailedException('Closing html tag is missing (document lengh: ' . strlen($response->getBody()) . ').'); |
|
| 18 | + throw new ValidationFailedException('Closing html tag is missing (document lengh: '.strlen($response->getBody()).').'); |
|
| 19 | 19 | } |
| 20 | 20 | } |
| 21 | 21 | } |
@@ -25,7 +25,7 @@ |
||
| 25 | 25 | public function validate(Response $response) |
| 26 | 26 | { |
| 27 | 27 | if ($response->getDuration() > $this->maxDuration) { |
| 28 | - throw new ValidationFailedException('The http request took ' . $response->getDuration() . ' milliseconds (limit was ' . $this->maxDuration . 'ms). '); |
|
| 28 | + throw new ValidationFailedException('The http request took '.$response->getDuration().' milliseconds (limit was '.$this->maxDuration.'ms). '); |
|
| 29 | 29 | } |
| 30 | 30 | } |
| 31 | 31 | } |
@@ -35,13 +35,13 @@ |
||
| 35 | 35 | var_dump($result); |
| 36 | 36 | |
| 37 | 37 | if ($result->error) { |
| 38 | - throw new ValidationFailedException('Google mobile friendly test was not passed. Error "' . $result->error->message . '"'); |
|
| 38 | + throw new ValidationFailedException('Google mobile friendly test was not passed. Error "'.$result->error->message.'"'); |
|
| 39 | 39 | } |
| 40 | 40 | |
| 41 | 41 | $passResult = $result->ruleGroups->USABILITY; |
| 42 | 42 | |
| 43 | 43 | if (!$passResult->pass) { |
| 44 | - throw new ValidationFailedException('Google mobile friendly test was not passed. Score ' . $passResult->score . '/100.'); |
|
| 44 | + throw new ValidationFailedException('Google mobile friendly test was not passed. Score '.$passResult->score.'/100.'); |
|
| 45 | 45 | } |
| 46 | 46 | } |
| 47 | 47 | } |
@@ -20,7 +20,7 @@ |
||
| 20 | 20 | $this->sessionContainer = new SessionContainer(); |
| 21 | 21 | |
| 22 | 22 | foreach ($sessions as $sessionName => $session) { |
| 23 | - $command = $this->executable . " '" . json_encode($session) . "'"; |
|
| 23 | + $command = $this->executable." '".json_encode($session)."'"; |
|
| 24 | 24 | |
| 25 | 25 | exec($command, $output, $return); |
| 26 | 26 | |