Completed
Push — master ( 8fd614...3478cb )
by Michal
38:15 queued 05:38
created
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.
phpunit-mock-objects/src/Framework/MockObject/Matcher/MethodName.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
 
58 58
     /**
59 59
      * @param  PHPUnit_Framework_MockObject_Invocation $invocation
60
-     * @return bool
60
+     * @return boolean|null
61 61
      */
62 62
     public function matches(PHPUnit_Framework_MockObject_Invocation $invocation)
63 63
     {
Please login to merge, or discard this patch.
phpunit-mock-objects/src/Framework/MockObject/Matcher/Parameters.php 1 patch
Doc Comments   -3 removed lines patch added patch discarded remove patch
@@ -79,9 +79,6 @@
 block discarded – undo
79 79
      * does the matcher will get the invoked() method called which should check
80 80
      * if an expectation is met.
81 81
      *
82
-     * @param  PHPUnit_Framework_MockObject_Invocation      $invocation
83
-     *                                                                  Object containing information on a mocked or stubbed method which
84
-     *                                                                  was invoked.
85 82
      * @return bool
86 83
      * @throws PHPUnit_Framework_ExpectationFailedException
87 84
      */
Please login to merge, or discard this patch.
src/Framework/MockObject/Matcher/StatelessInvocation.php 1 patch
Doc Comments   +1 added lines, -4 removed lines patch added patch discarded remove patch
@@ -45,10 +45,7 @@
 block discarded – undo
45 45
      * the matcher will get the invoked() method called which should check if an
46 46
      * expectation is met.
47 47
      *
48
-     * @param  PHPUnit_Framework_MockObject_Invocation $invocation
49
-     *                                                             Object containing information on a mocked or stubbed method which
50
-     *                                                             was invoked.
51
-     * @return bool
48
+     * @return boolean|null
52 49
      */
53 50
     public function verify()
54 51
     {
Please login to merge, or discard this patch.