Completed
Push — master ( 23de66...1f85a6 )
by Nils
02:06
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/Config/Configuration.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
     }
159 159
 
160 160
     /**
161
-     * @param $section
161
+     * @param string $section
162 162
      *
163 163
      * @return array
164 164
      */
@@ -171,6 +171,9 @@  discard block
 block discarded – undo
171 171
         }
172 172
     }
173 173
 
174
+    /**
175
+     * @param string $name
176
+     */
174 177
     public function getExtension($name)
175 178
     {
176 179
         if (array_key_exists($name, $this->extensions)) {
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/Cookies/CountRule.php 1 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/Rules/Xml/Sitemap/ValidRule.php 1 patch
Doc Comments   +5 added lines, -2 removed 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) {
@@ -41,8 +44,8 @@  discard block
 block discarded – undo
41 44
     }
42 45
 
43 46
     /**
44
-     * @param $body
45
-     * @param $filename
47
+     * @param string $body
48
+     * @param string $filename
46 49
      * @param bool $isIndex
47 50
      * @throws ValidationFailedException
48 51
      */
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
@@ -38,6 +38,7 @@  discard block
 block discarded – undo
38 38
      * @param $status
39 39
      * @param $value
40 40
      * @param $message
41
+     * @param string $url
41 42
      */
42 43
     public function __construct($status, $message = '', $value = null, $url = null)
43 44
     {
@@ -56,7 +57,7 @@  discard block
 block discarded – undo
56 57
     }
57 58
 
58 59
     /**
59
-     * @param array $attributes
60
+     * @param array $attribute
60 61
      */
61 62
     public function addAttribute(Attribute $attribute)
62 63
     {
@@ -109,7 +110,7 @@  discard block
 block discarded – undo
109 110
     }
110 111
 
111 112
     /**
112
-     * @param string $identifier
113
+     * @param string $identifierRule
113 114
      */
114 115
     public function setIdentifierRule($identifierRule)
115 116
     {
Please login to merge, or discard this patch.