@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | private function initConfigArray(array $configArray, array $defaultSettings = null) |
47 | 47 | { |
48 | 48 | if ($defaultSettings === null) { |
49 | - $defaultSettings = Yaml::parse(file_get_contents(__DIR__ . '/../settings/' . self::DEFAULT_SETTINGS)); |
|
49 | + $defaultSettings = Yaml::parse(file_get_contents(__DIR__.'/../settings/'.self::DEFAULT_SETTINGS)); |
|
50 | 50 | } |
51 | 51 | |
52 | 52 | if (count($configArray) === 0) { |
@@ -126,7 +126,7 @@ discard block |
||
126 | 126 | if ($this->hasSection($section)) { |
127 | 127 | return $this->configArray[$section]; |
128 | 128 | } else { |
129 | - throw new \RuntimeException('The section (' . $section . ') you are trying to access does not exist.'); |
|
129 | + throw new \RuntimeException('The section ('.$section.') you are trying to access does not exist.'); |
|
130 | 130 | } |
131 | 131 | } |
132 | 132 | |
@@ -135,7 +135,7 @@ discard block |
||
135 | 135 | if (array_key_exists($name, $this->extensions)) { |
136 | 136 | return $this->extensions[$name]; |
137 | 137 | } else { |
138 | - throw new \RuntimeException('The extension ("' . $name . '") you are trying to access does not exist. Registered extensions are: ' . implode(' ,', array_keys($this->extensions)) . '.'); |
|
138 | + throw new \RuntimeException('The extension ("'.$name.'") you are trying to access does not exist. Registered extensions are: '.implode(' ,', array_keys($this->extensions)).'.'); |
|
139 | 139 | } |
140 | 140 | } |
141 | 141 |
@@ -53,20 +53,20 @@ |
||
53 | 53 | /* @var \Ivory\HttpAdapter\HttpAdapterException $exception */ |
54 | 54 | |
55 | 55 | $mainUri = $request->getUri(); |
56 | - $this->redirects[(string) $mainUri->getScheme() . '://' . $mainUri->getHost() . $corruptUrl] = (string) $mainUri; |
|
56 | + $this->redirects[(string) $mainUri->getScheme().'://'.$mainUri->getHost().$corruptUrl] = (string) $mainUri; |
|
57 | 57 | |
58 | - $this->urls[] = ['url' => $mainUri->getScheme() . '://' . $mainUri->getHost() . $corruptUrl, 'system' => $url['system']]; |
|
59 | - $this->urlStack[] = ['url' => $mainUri->getScheme() . '://' . $mainUri->getHost() . $corruptUrl, 'system' => $url['system']]; |
|
58 | + $this->urls[] = ['url' => $mainUri->getScheme().'://'.$mainUri->getHost().$corruptUrl, 'system' => $url['system']]; |
|
59 | + $this->urlStack[] = ['url' => $mainUri->getScheme().'://'.$mainUri->getHost().$corruptUrl, 'system' => $url['system']]; |
|
60 | 60 | |
61 | 61 | return $this->next(); |
62 | 62 | } |
63 | 63 | |
64 | 64 | // the error handling should be done withing the calling class |
65 | - echo "\n " . $exception->getMessage() . "\n"; |
|
65 | + echo "\n ".$exception->getMessage()."\n"; |
|
66 | 66 | |
67 | 67 | return $this->next(); |
68 | 68 | } else { |
69 | - $errorMessages .= $exception->getMessage() . "\n"; |
|
69 | + $errorMessages .= $exception->getMessage()."\n"; |
|
70 | 70 | } |
71 | 71 | } |
72 | 72 | if ($errorMessages !== '') { |
@@ -44,7 +44,7 @@ |
||
44 | 44 | if (array_key_exists($name, $this->stopStrategies)) { |
45 | 45 | return $this->stopStrategies[$name]; |
46 | 46 | } else { |
47 | - throw new \RuntimeException("Strategy ('" . $name . "') not found. Available strategies are " . implode(', ', array_keys($this->stopStrategies))); |
|
47 | + throw new \RuntimeException("Strategy ('".$name."') not found. Available strategies are ".implode(', ', array_keys($this->stopStrategies))); |
|
48 | 48 | } |
49 | 49 | } |
50 | 50 | } |
@@ -41,12 +41,12 @@ discard block |
||
41 | 41 | public function init($filters = array(), $filterFile = '', $exclusive = array()) |
42 | 42 | { |
43 | 43 | if (count($exclusive) > 0 && (count($filters) > 0 || $filterFile !== '')) { |
44 | - throw new \RuntimeException("It's not possible to define filter lists and an exclusive list at the same time [Extension: " . get_class($this) . '].'); |
|
44 | + throw new \RuntimeException("It's not possible to define filter lists and an exclusive list at the same time [Extension: ".get_class($this).'].'); |
|
45 | 45 | } |
46 | 46 | |
47 | 47 | if ($filterFile !== '') { |
48 | 48 | if (!file_exists($filterFile)) { |
49 | - throw new \RuntimeException('Filter file not found: ' . $filterFile); |
|
49 | + throw new \RuntimeException('Filter file not found: '.$filterFile); |
|
50 | 50 | } |
51 | 51 | |
52 | 52 | $filterElements = EnvAwareYaml::parse(file_get_contents($filterFile)); |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | private function isFilteredByFilter($ruleName, $uri) |
106 | 106 | { |
107 | 107 | foreach ($this->filters as $filter) { |
108 | - if ($ruleName === $filter['rule'] && 0 < preg_match('$' . $filter['uri'] . '$', $uri)) { |
|
108 | + if ($ruleName === $filter['rule'] && 0 < preg_match('$'.$filter['uri'].'$', $uri)) { |
|
109 | 109 | return true; |
110 | 110 | } |
111 | 111 | } |
@@ -82,8 +82,8 @@ discard block |
||
82 | 82 | $testCase->addFailure(new Failure($ruleName, $message)); |
83 | 83 | |
84 | 84 | if ($this->retriever instanceof CrawlingRetriever) { |
85 | - $stackTrace = $result->getUrl() . ' coming from ' . (string) $this->retriever->getComingFrom($result->getUrl()) . PHP_EOL; |
|
86 | - $stackTrace .= ' - ' . $message . " [rule: $ruleName]"; |
|
85 | + $stackTrace = $result->getUrl().' coming from '.(string) $this->retriever->getComingFrom($result->getUrl()).PHP_EOL; |
|
86 | + $stackTrace .= ' - '.$message." [rule: $ruleName]"; |
|
87 | 87 | $testCase->setSystemOut($stackTrace); |
88 | 88 | } |
89 | 89 | } |
@@ -94,6 +94,6 @@ discard block |
||
94 | 94 | |
95 | 95 | file_put_contents($this->filename, $xUnitReport->toXml()); |
96 | 96 | |
97 | - $this->output->writeln(' <info>Writing XUnit Output to file:</info> ' . $this->filename); |
|
97 | + $this->output->writeln(' <info>Writing XUnit Output to file:</info> '.$this->filename); |
|
98 | 98 | } |
99 | 99 | } |
@@ -31,15 +31,15 @@ |
||
31 | 31 | |
32 | 32 | if ($xpath['relation'] = 'equals') { |
33 | 33 | $result = $count === $xpath['value']; |
34 | - $message = 'The xpath "' . $xpath['pattern'] . '" was found ' . $count . ' times. Expected were exact ' . $xpath['value'] . ' occurencies.'; |
|
34 | + $message = 'The xpath "'.$xpath['pattern'].'" was found '.$count.' times. Expected were exact '.$xpath['value'].' occurencies.'; |
|
35 | 35 | } elseif ($xpath['relation'] === 'less than') { |
36 | 36 | $result = $count < $xpath['value']; |
37 | - $message = 'The xpath "' . $xpath['pattern'] . '" was found ' . $count . ' times. Expected were less than ' . $xpath['value'] . '.'; |
|
37 | + $message = 'The xpath "'.$xpath['pattern'].'" was found '.$count.' times. Expected were less than '.$xpath['value'].'.'; |
|
38 | 38 | } elseif ($xpath['relation'] === 'greater than') { |
39 | 39 | $result = $count > $xpath['value']; |
40 | - $message = 'The xpath "' . $xpath['pattern'] . '" was found ' . $count . ' times. Expected were more than ' . $xpath['value'] . '.'; |
|
40 | + $message = 'The xpath "'.$xpath['pattern'].'" was found '.$count.' times. Expected were more than '.$xpath['value'].'.'; |
|
41 | 41 | } else { |
42 | - throw new \RuntimeException('Relation not defined. Given "' . $xpath['relation'] . '" expected [equals, greater than, less than]'); |
|
42 | + throw new \RuntimeException('Relation not defined. Given "'.$xpath['relation'].'" expected [equals, greater than, less than]'); |
|
43 | 43 | } |
44 | 44 | |
45 | 45 | $this->assert($result, $message); |
@@ -26,10 +26,10 @@ |
||
26 | 26 | $validTo = date('d.m.Y H:i:s', $certInfo['validTo_time_t']); |
27 | 27 | |
28 | 28 | if ($certInfo['validFrom_time_t'] > time() || $certInfo['validTo_time_t'] < time()) { |
29 | - $errorMessage = 'Certificate is expired. [' . $validFrom . ' - ' . $validTo . ']'; |
|
29 | + $errorMessage = 'Certificate is expired. ['.$validFrom.' - '.$validTo.']'; |
|
30 | 30 | throw new ValidationFailedException($errorMessage); |
31 | - } elseif ($certInfo['validTo_time_t'] < strtotime('+' . $this->expireWarningTime . 'days')) { |
|
32 | - $errorMessage = 'Certificate warning, expires in less than ' . $this->expireWarningTime . ' days. Certificate expires at: ' . $validTo; |
|
31 | + } elseif ($certInfo['validTo_time_t'] < strtotime('+'.$this->expireWarningTime.'days')) { |
|
32 | + $errorMessage = 'Certificate warning, expires in less than '.$this->expireWarningTime.' days. Certificate expires at: '.$validTo; |
|
33 | 33 | throw new ValidationFailedException($errorMessage); |
34 | 34 | } |
35 | 35 |
@@ -29,7 +29,7 @@ |
||
29 | 29 | $sslOptions = stream_context_create(array('ssl' => array('capture_peer_cert' => true))); |
30 | 30 | |
31 | 31 | $request = stream_socket_client( |
32 | - 'ssl://' . $host . ':443', |
|
32 | + 'ssl://'.$host.':443', |
|
33 | 33 | $errno, |
34 | 34 | $errstr, |
35 | 35 | 30, |
@@ -23,10 +23,10 @@ |
||
23 | 23 | { |
24 | 24 | if (array_key_exists('issuer', $certInfo) and array_key_exists('CN', $certInfo['issuer'])) { |
25 | 25 | if ($certInfo['issuer']['CN'] != $this->authorityName) { |
26 | - throw new ValidationFailedException('Expected authority was "' . $this->authorityName . '", "' . $certInfo['issuer']['CN'] . '" found.'); |
|
26 | + throw new ValidationFailedException('Expected authority was "'.$this->authorityName.'", "'.$certInfo['issuer']['CN'].'" found.'); |
|
27 | 27 | } |
28 | 28 | } else { |
29 | - throw new ValidationFailedException('Expected authority was "' . $this->authorityName . '". No authority found.'); |
|
29 | + throw new ValidationFailedException('Expected authority was "'.$this->authorityName.'". No authority found.'); |
|
30 | 30 | } |
31 | 31 | } |
32 | 32 | } |