Completed
Push — master ( 44c2f0...c10809 )
by Nils
03:26
created
src/Http/Response.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -13,6 +13,9 @@
 block discarded – undo
13 13
         return $this->getStatusCode();
14 14
     }
15 15
 
16
+    /**
17
+     * @return string
18
+     */
16 19
     public function getContentType()
17 20
     {
18 21
         $exploded = explode(';', $this->hasHeader('Content-Type') ? $this->getHeader('Content-Type')[0] : null);
Please login to merge, or discard this patch.
src/Rules/Html/RegExExistsRule.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,6 @@
 block discarded – undo
15 15
     protected $contentTypes = array('text/html');
16 16
 
17 17
     /**
18
-     * @param int $string The string that the document must contain
19 18
      */
20 19
     public function init(array $regExs)
21 20
     {
Please login to merge, or discard this patch.
src/Rules/Html/RegExNotExistsRule.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,6 @@
 block discarded – undo
15 15
     protected $contentTypes = array('text/html');
16 16
 
17 17
     /**
18
-     * @param int $string The string that the document must contain
19 18
      */
20 19
     public function init(array $regExs)
21 20
     {
Please login to merge, or discard this patch.
src/Rules/Seo/RobotsDisallowAllRule.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -49,6 +49,9 @@
 block discarded – undo
49 49
         }
50 50
     }
51 51
 
52
+    /**
53
+     * @param string $content
54
+     */
52 55
     private function normalizeContent($content)
53 56
     {
54 57
         $normalizedContent = strtolower($content);
Please login to merge, or discard this patch.
src/Extensions/SmokeReporter/Reporter/StandardCliReporter.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -72,6 +72,9 @@
 block discarded – undo
72 72
         $this->output->writeln('');
73 73
     }
74 74
 
75
+    /**
76
+     * @param integer $ruleKey
77
+     */
75 78
     private function getFailedUrls($ruleKey)
76 79
     {
77 80
         $failedUrls = array();
Please login to merge, or discard this patch.
src/Extensions/SmokeReporter/Reporter/KoalamonReporter.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -246,6 +246,10 @@
 block discarded – undo
246 246
         }
247 247
     }
248 248
 
249
+    /**
250
+     * @param string $identifier
251
+     * @param string $message
252
+     */
249 253
     private function send($identifier, $system, $message, $status, $url = '', $value = 0, $tool = null)
250 254
     {
251 255
         if (is_null($tool)) {
Please login to merge, or discard this patch.
src/Extensions/SmokeResponseRetriever/Retriever/Koalamon/Retriever.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -43,6 +43,11 @@
 block discarded – undo
43 43
         return json_decode($systems->getBody(), true);
44 44
     }
45 45
 
46
+    /**
47
+     * @param string $url
48
+     *
49
+     * @return string
50
+     */
46 51
     private function prepareUrl($url)
47 52
     {
48 53
         $preparedUrl = str_replace('#project#', $this->project, $url);
Please login to merge, or discard this patch.
src/Rules/Xml/Sitemap/ValidRule.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -26,6 +26,9 @@  discard block
 block discarded – undo
26 26
         $this->strictMode = $strictMode;
27 27
     }
28 28
 
29
+    /**
30
+     * @param boolean $isIndex
31
+     */
29 32
     private function getSchema($isIndex)
30 33
     {
31 34
         if ($isIndex) {
@@ -39,6 +42,10 @@  discard block
 block discarded – undo
39 42
         }
40 43
     }
41 44
 
45
+    /**
46
+     * @param \Psr\Http\Message\StreamInterface $body
47
+     * @param string $filename
48
+     */
42 49
     private function validateBody($body, $filename, $isIndex = true)
43 50
     {
44 51
         $dom = new \DOMDocument();
Please login to merge, or discard this patch.
src/Extensions/SmokeReporter/Reporter/LeankoalaReporter.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -182,6 +182,11 @@
 block discarded – undo
182 182
         return substr($string, 0, strpos($string, '_'));
183 183
     }
184 184
 
185
+    /**
186
+     * @param string $identifier
187
+     * @param string $message
188
+     * @param string $tool
189
+     */
185 190
     private function send($identifier, $system, $message, $status, $value, $tool, $component)
186 191
     {
187 192
         if ($status != CheckResult::STATUS_NONE) {
Please login to merge, or discard this patch.