Completed
Pull Request — master (#114)
by Deven
15:41
created
vendor/phpunit/php-code-coverage/src/CodeCoverage/Report/Node/Iterator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
     /**
67 67
      * Returns the current element.
68 68
      *
69
-     * @return PHPUnit_Framework_Test
69
+     * @return PHP_CodeCoverage_Report_Node|null
70 70
      */
71 71
     public function current()
72 72
     {
Please login to merge, or discard this patch.
phpunit/php-code-coverage/src/CodeCoverage/Report/XML/File/Report.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -13,6 +13,9 @@  discard block
 block discarded – undo
13 13
  */
14 14
 class PHP_CodeCoverage_Report_XML_File_Report extends PHP_CodeCoverage_Report_XML_File
15 15
 {
16
+    /**
17
+     * @param string $name
18
+     */
16 19
     public function __construct($name)
17 20
     {
18 21
         $this->dom = new DOMDocument;
@@ -58,6 +61,9 @@  discard block
 block discarded – undo
58 61
         return $this->getUnitObject('trait', $name);
59 62
     }
60 63
 
64
+    /**
65
+     * @param string $tagName
66
+     */
61 67
     private function getUnitObject($tagName, $name)
62 68
     {
63 69
         $node = $this->contextNode->appendChild(
Please login to merge, or discard this patch.
vendor/phpunit/php-code-coverage/src/CodeCoverage/Report/XML/Node.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -60,6 +60,9 @@  discard block
 block discarded – undo
60 60
         return new PHP_CodeCoverage_Report_XML_Totals($totalsContainer);
61 61
     }
62 62
 
63
+    /**
64
+     * @param string $name
65
+     */
63 66
     public function addDirectory($name)
64 67
     {
65 68
         $dirNode = $this->getDom()->createElementNS(
@@ -73,6 +76,10 @@  discard block
 block discarded – undo
73 76
         return new PHP_CodeCoverage_Report_XML_Directory($dirNode);
74 77
     }
75 78
 
79
+    /**
80
+     * @param string $name
81
+     * @param string $href
82
+     */
76 83
     public function addFile($name, $href)
77 84
     {
78 85
         $fileNode = $this->getDom()->createElementNS(
Please login to merge, or discard this patch.
vendor/phpunit/php-file-iterator/src/Iterator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -131,7 +131,7 @@
 block discarded – undo
131 131
 
132 132
     /**
133 133
      * @param  string $filename
134
-     * @param  array  $subString
134
+     * @param  array  $subStrings
135 135
      * @param  int    $type
136 136
      * @return bool
137 137
      * @since  Method available since Release 1.1.0
Please login to merge, or discard this patch.
vendor/phpunit/php-token-stream/src/Token.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -530,7 +530,7 @@
 block discarded – undo
530 530
     }
531 531
 
532 532
     /**
533
-     * @return boolean|string
533
+     * @return false|string
534 534
      */
535 535
     public function getParent()
536 536
     {
Please login to merge, or discard this patch.
vendor/phpunit/php-token-stream/tests/_fixture/source4.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -14,6 +14,9 @@
 block discarded – undo
14 14
 
15 15
 interface b extends a
16 16
 {
17
+    /**
18
+     * @return void
19
+     */
17 20
     public function baz(Baz $baz);
18 21
 }
19 22
 
Please login to merge, or discard this patch.
phpunit/phpunit-mock-objects/src/Framework/MockObject/Invocation/Object.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -22,10 +22,10 @@
 block discarded – undo
22 22
 
23 23
     /**
24 24
      * @param string $className
25
-     * @param string $methodname
25
+     * @param string $methodName
26 26
      * @param array  $parameters
27
-     * @param object $object
28
-     * @param object $cloneObjects
27
+     * @param stdClass $object
28
+     * @param object stdClass
29 29
      */
30 30
     public function __construct($className, $methodName, array $parameters, $object, $cloneObjects = false)
31 31
     {
Please login to merge, or discard this patch.
phpunit/phpunit-mock-objects/src/Framework/MockObject/Invocation/Static.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
 
60 60
     /**
61 61
      * @param string $className
62
-     * @param string $methodname
62
+     * @param string $methodName
63 63
      * @param array  $parameters
64 64
      * @param bool   $cloneObjects
65 65
      */
Please login to merge, or discard this patch.
phpunit/phpunit-mock-objects/src/Framework/MockObject/InvocationMocker.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
 
54 54
     /**
55 55
      * @param  mixed     $id
56
-     * @return bool|null
56
+     * @return PHPUnit_Framework_MockObject_Builder_Match|null
57 57
      */
58 58
     public function lookupId($id)
59 59
     {
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
     }
146 146
 
147 147
     /**
148
-     * @return bool
148
+     * @return boolean|null
149 149
      */
150 150
     public function verify()
151 151
     {
Please login to merge, or discard this patch.