Completed
Push — master ( f3ac90...0a96b0 )
by Alexandre
02:22
created
src/Application/Output/HtmlReportHelper.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@
 block discarded – undo
74 74
 EOT;
75 75
 
76 76
     /**
77
-     * @param  RuleInterface[]  $rules
77
+     * @param  RuleFilterIterator  $rules
78 78
      * @param  string $htmlFile
79 79
      */
80 80
     public static function generateHtmlFile(RuleFilterIterator $rules, $htmlFile)
Please login to merge, or discard this patch.
src/Application/Output/JunitHelper.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
 class JunitHelper
17 17
 {
18 18
     /**
19
-     * @param  RuleInterface[]  $rules
19
+     * @param  RuleFilterIterator  $rules
20 20
      * @param  string $junitFile
21 21
      */
22 22
     public static function generateJunitFile(RuleFilterIterator $rules, $junitFile)
@@ -40,8 +40,8 @@  discard block
 block discarded – undo
40 40
 
41 41
     /**
42 42
      * @param  array $tests
43
-     * @param  DOMDocument $xml
44
-     * @return DOMDocument
43
+     * @param  \DOMDocument $xml
44
+     * @return \DOMElement
45 45
      */
46 46
     private static function createTestSuite($name, array $tests, \DOMDocument $xml)
47 47
     {
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
      * @param  array $attributes
90 90
      * @param  \DOMDocument $xml
91 91
      * @param  string $value
92
-     * @return \DOMDocument
92
+     * @return \DOMElement
93 93
      */
94 94
     private static function createElement($tagName, array $attributes, \DOMDocument $xml, $value = null)
95 95
     {
Please login to merge, or discard this patch.
src/Rule/ComposerConfigRule.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -191,7 +191,7 @@
 block discarded – undo
191 191
     /**
192 192
      * @param string $version
193 193
      *
194
-     * @return mixed
194
+     * @return string
195 195
      */
196 196
     protected function sanitizeVersion($version)
197 197
     {
Please login to merge, or discard this patch.
src/Rule/FilesRule.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
 
53 53
     /**
54 54
      * @param $fileConf
55
-     * @param $baseDir
55
+     * @param string $baseDir
56 56
      * @return array
57 57
      */
58 58
     private function expectsFilesGlobExists($fileConf, $baseDir)
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
     }
76 76
 
77 77
     /**
78
-     * @param $filePathGlob
78
+     * @param string $filePathGlob
79 79
      * @param $reason
80 80
      * @return array
81 81
      *
Please login to merge, or discard this patch.