Completed
Push — master ( b211f5...44c82e )
by Nils
02:04
created
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/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/Extensions/SmokeReporter/Reporter/LeankoalaReporter.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -198,12 +198,12 @@
 block discarded – undo
198 198
     }
199 199
 
200 200
     /**
201
-     * @param $identifier
201
+     * @param string $identifier
202 202
      * @param $system
203
-     * @param $message
203
+     * @param string $message
204 204
      * @param $status
205 205
      * @param $value
206
-     * @param $tool
206
+     * @param string $tool
207 207
      * @param $component
208 208
      * @param Attribute[] $attributes
209 209
      */
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
@@ -27,6 +27,9 @@  discard block
 block discarded – undo
27 27
         $this->strictMode = $strictMode;
28 28
     }
29 29
 
30
+    /**
31
+     * @param boolean $isIndex
32
+     */
30 33
     private function getSchema($isIndex)
31 34
     {
32 35
         if ($isIndex) {
@@ -40,6 +43,10 @@  discard block
 block discarded – undo
40 43
         }
41 44
     }
42 45
 
46
+    /**
47
+     * @param string $body
48
+     * @param string $filename
49
+     */
43 50
     private function validateBody($body, $filename, $isIndex = true)
44 51
     {
45 52
         $dom = new \DOMDocument();
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
@@ -16,7 +16,6 @@
 block discarded – undo
16 16
     protected $contentTypes = array('text/html', 'application/json', 'application/xml');
17 17
 
18 18
     /**
19
-     * @param int $string The string that the document must contain
20 19
      */
21 20
     public function init(array $regExs)
22 21
     {
Please login to merge, or discard this patch.
src/Rules/CheckResult.php 1 patch
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -29,6 +29,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
71 72
     }
72 73
 
73 74
     /**
74
-     * @return mixed
75
+     * @return string
75 76
      */
76 77
     public function getMessage()
77 78
     {
Please login to merge, or discard this patch.