Completed
Push — master ( 003b34...bd032d )
by
unknown
02:17
created
src/Http/GuzzleClient.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use phm\HttpWebdriverClient\Http\Client\Guzzle\GuzzleClient as phmGuzzleClient;
6 6
 use phm\HttpWebdriverClient\Http\Client\Decorator\FileCacheDecorator;
7
-use phm\HttpWebdriverClient\Http\Client\Decorator\LoggerDecorator;
8 7
 use phm\HttpWebdriverClient\Http\Client\HttpClient;
9 8
 use Psr\Http\Message\RequestInterface;
10 9
 
Please login to merge, or discard this patch.
src/Config/Configuration.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
     private function initConfigArray(array $configArray, array $defaultSettings = null)
68 68
     {
69 69
         if ($defaultSettings === null) {
70
-            $defaultSettings = Yaml::parse(file_get_contents(__DIR__ . '/../settings/' . self::DEFAULT_SETTINGS));
70
+            $defaultSettings = Yaml::parse(file_get_contents(__DIR__.'/../settings/'.self::DEFAULT_SETTINGS));
71 71
         }
72 72
 
73 73
         if (count($configArray) === 0) {
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
         if ($this->hasSection($section)) {
170 170
             return $this->configArray[$section];
171 171
         } else {
172
-            throw new \RuntimeException('The section (' . $section . ') you are trying to access does not exist.');
172
+            throw new \RuntimeException('The section ('.$section.') you are trying to access does not exist.');
173 173
         }
174 174
     }
175 175
 
@@ -178,7 +178,7 @@  discard block
 block discarded – undo
178 178
         if (array_key_exists($name, $this->extensions)) {
179 179
             return $this->extensions[$name];
180 180
         } else {
181
-            throw new \RuntimeException('The extension ("' . $name . '") you are trying to access does not exist. Registered extensions are: ' . implode(' ,', array_keys($this->extensions)) . '.');
181
+            throw new \RuntimeException('The extension ("'.$name.'") you are trying to access does not exist. Registered extensions are: '.implode(' ,', array_keys($this->extensions)).'.');
182 182
         }
183 183
     }
184 184
 
@@ -203,7 +203,7 @@  discard block
 block discarded – undo
203 203
             try {
204 204
                 $client = Init::initialize($this->configArray['client']);
205 205
             } catch (\Exception $e) {
206
-                throw new ConfigurationException('Error initializing client (' . $e->getMessage() . ')');
206
+                throw new ConfigurationException('Error initializing client ('.$e->getMessage().')');
207 207
             }
208 208
 
209 209
             return $client;
Please login to merge, or discard this patch.
src/Rules/Http/Header/GZipRule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
             if (strpos($response->getContentType(), 'image') === false
26 26
                 && strpos($response->getContentType(), 'pdf') === false
27 27
                 && strpos($response->getContentType(), 'postscript') === false
28
-                && strlen((string)$response->getBody()) >= $this->minFileSize
28
+                && strlen((string) $response->getBody()) >= $this->minFileSize
29 29
             ) {
30 30
                 if (!$response->hasHeader('Content-Encoding') || $response->getHeader('Content-Encoding')[0] !== 'gzip') {
31 31
                     throw new ValidationFailedException('gzip compression not active');
Please login to merge, or discard this patch.
src/Rules/Cookies/CountRule.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,12 +36,12 @@
 block discarded – undo
36 36
                 if ($cookieCount > $this->maxCookies) {
37 37
                     $result = new CheckResult(
38 38
                         CheckResult::STATUS_FAILURE,
39
-                        $cookieCount . ' cookies were stored (limit was ' . $this->maxCookies . ').',
39
+                        $cookieCount.' cookies were stored (limit was '.$this->maxCookies.').',
40 40
                         $cookieCount);
41 41
                 } else {
42 42
                     $result = new CheckResult(
43 43
                         CheckResult::STATUS_SUCCESS,
44
-                        $cookieCount . ' cookies were stored (limit was ' . $this->maxCookies . ').',
44
+                        $cookieCount.' cookies were stored (limit was '.$this->maxCookies.').',
45 45
                         $cookieCount);
46 46
                 }
47 47
 
Please login to merge, or discard this patch.
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,6 @@
 block discarded – undo
18 18
     private $maxCookies;
19 19
 
20 20
     /**
21
-     * @param int $maxDuration The maximum duration a http call is allowed to take (time to first byte)
22 21
      */
23 22
     public function init($maxElements = 20)
24 23
     {
Please login to merge, or discard this patch.
src/Extensions/SmokeReporter/Reporter/CliReporter.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -30,19 +30,19 @@
 block discarded – undo
30 30
 
31 31
     protected function renderFailure(CheckResult $result)
32 32
     {
33
-        $this->output->writeln('   <error> ' . (string) $result->getResponse()->getUri() . ' </error> coming from ' . (string) $this->retriever->getComingFrom($result->getResponse()->getUri()));
34
-        $this->output->writeln('    - ' . $result->getMessage() . ' [rule: ' . $result->getRuleName() . ']');
33
+        $this->output->writeln('   <error> '.(string) $result->getResponse()->getUri().' </error> coming from '.(string) $this->retriever->getComingFrom($result->getResponse()->getUri()));
34
+        $this->output->writeln('    - '.$result->getMessage().' [rule: '.$result->getRuleName().']');
35 35
         $this->output->writeln('');
36 36
     }
37 37
 
38 38
     protected function renderSuccess(CheckResult $result)
39 39
     {
40
-        $this->output->writeln('   <info> ' . (string) $result->getResponse()->getUri() . ' </info> all tests passed');
40
+        $this->output->writeln('   <info> '.(string) $result->getResponse()->getUri().' </info> all tests passed');
41 41
     }
42 42
 
43 43
     protected function renderSkipped(CheckResult $result)
44 44
     {
45
-        $this->output->writeln('   <comment> ' . (string) $result->getResponse()->getUri() . ' </comment>test skipped');
46
-        $this->output->writeln('    - ' . $result->getMessage() . ' [rule: ' . $result->getRuleName() . ']');
45
+        $this->output->writeln('   <comment> '.(string) $result->getResponse()->getUri().' </comment>test skipped');
46
+        $this->output->writeln('    - '.$result->getMessage().' [rule: '.$result->getRuleName().']');
47 47
     }
48 48
 }
Please login to merge, or discard this patch.
src/Rules/Html/InvalidUrlsRule.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -18,18 +18,18 @@
 block discarded – undo
18 18
      */
19 19
     protected function doValidation(ResponseInterface $response)
20 20
     {
21
-        $document = new Document((string)$response->getBody(), false);
21
+        $document = new Document((string) $response->getBody(), false);
22 22
         $urls = $document->getDependencies($response->getUri());
23 23
         $invalidUrls = array();
24 24
 
25 25
         foreach ($urls as $url) {
26
-            $idnUrl = $url->getScheme() . '://' . idn_to_ascii($url->getHost()) . $url->getPath();
26
+            $idnUrl = $url->getScheme().'://'.idn_to_ascii($url->getHost()).$url->getPath();
27 27
 
28 28
             if (!filter_var($idnUrl, FILTER_VALIDATE_URL)) {
29
-                $invalidUrls[] = (string)$url;
29
+                $invalidUrls[] = (string) $url;
30 30
             }
31 31
         }
32 32
 
33
-        $this->assert(count($invalidUrls) === 0, 'Invalid urls found (' . implode(', ', $invalidUrls) . ').');
33
+        $this->assert(count($invalidUrls) === 0, 'Invalid urls found ('.implode(', ', $invalidUrls).').');
34 34
     }
35 35
 }
Please login to merge, or discard this patch.
src/Rules/Html/CssSelectorExistsRule.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
 
24 24
     public function doValidation(ResponseInterface $response)
25 25
     {
26
-        $content = (string)$response->getBody();
26
+        $content = (string) $response->getBody();
27 27
 
28 28
         $domDocument = new \DOMDocument();
29 29
         @$domDocument->loadHTML($content);
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
             try {
41 41
                 $selectorAsXPath = $converter->toXPath($selector['pattern']);
42 42
             } catch (\Exception $e) {
43
-                throw new ValidationFailedException('Invalid css selector (' . $selector['pattern'] . ').');
43
+                throw new ValidationFailedException('Invalid css selector ('.$selector['pattern'].').');
44 44
             }
45 45
 
46 46
             $count = $domXPath->query($selectorAsXPath)->length;
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
         if ($error === true) {
55 55
             $allNotFoundSelectors = implode('", "', $snotFoundSelectors);
56 56
 
57
-            throw new ValidationFailedException('CSS Selector "' . $allNotFoundSelectors . '" not found in DOM.');
57
+            throw new ValidationFailedException('CSS Selector "'.$allNotFoundSelectors.'" not found in DOM.');
58 58
         }
59 59
     }
60 60
 }
Please login to merge, or discard this patch.
src/Rules/Html/InvalidStatusCodeRule.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,9 +31,9 @@
 block discarded – undo
31 31
 
32 32
             if (count($errorList) > 0) {
33 33
                 $count = count($errorList);
34
-                $msg = 'Found ' . $count . ' resources with status code 4xx or 5xx. <ul>';
34
+                $msg = 'Found '.$count.' resources with status code 4xx or 5xx. <ul>';
35 35
                 foreach ($errorList as $error) {
36
-                    $msg .= '<li>' . $error['name'] . ' (' . $error['http_status'] . ')</li>';
36
+                    $msg .= '<li>'.$error['name'].' ('.$error['http_status'].')</li>';
37 37
                 }
38 38
                 $msg .= '</ul>';
39 39
                 return new CheckResult(CheckResult::STATUS_FAILURE, $msg, $count);
Please login to merge, or discard this patch.