Completed
Push — master ( 96d573...f9f049 )
by Ehsan
07:54
created
vendor/phpspec/prophecy/src/Prophecy/Argument/Token/ExactValueToken.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
     /**
46 46
      * Scores 10 if argument matches preset value.
47 47
      *
48
-     * @param $argument
48
+     * @param string $argument
49 49
      *
50 50
      * @return bool|int
51 51
      */
Please login to merge, or discard this patch.
vendor/phpspec/prophecy/src/Prophecy/Call/CallCenter.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -145,6 +145,9 @@
 block discarded – undo
145 145
         );
146 146
     }
147 147
 
148
+    /**
149
+     * @param string $methodName
150
+     */
148 151
     private function createUnexpectedCallException(ObjectProphecy $prophecy, $methodName,
149 152
                                                    array $arguments)
150 153
     {
Please login to merge, or discard this patch.
vendor/phpspec/prophecy/src/Prophecy/Prophecy/MethodProphecy.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
      *
41 41
      * @param ObjectProphecy                        $objectProphecy
42 42
      * @param string                                $methodName
43
-     * @param null|Argument\ArgumentsWildcard|array $arguments
43
+     * @param Argument\ArgumentsWildcard $arguments
44 44
      *
45 45
      * @throws \Prophecy\Exception\Doubler\MethodNotFoundException If method not found
46 46
      */
@@ -281,7 +281,7 @@  discard block
 block discarded – undo
281 281
     /**
282 282
      * Checks provided prediction immediately.
283 283
      *
284
-     * @param callable|Prediction\PredictionInterface $prediction
284
+     * @param Prediction\PredictionInterface $prediction
285 285
      *
286 286
      * @return $this
287 287
      *
Please login to merge, or discard this patch.
vendor/phpunit/php-code-coverage/src/CodeCoverage.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -313,7 +313,7 @@
 block discarded – undo
313 313
      * Appends code coverage data.
314 314
      *
315 315
      * @param array $data
316
-     * @param mixed $id
316
+     * @param null|string $id
317 317
      * @param bool  $append
318 318
      * @param mixed $linesToBeCovered
319 319
      * @param array $linesToBeUsed
Please login to merge, or discard this patch.
vendor/phpunit/php-code-coverage/src/Node/Iterator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
     /**
65 65
      * Returns the current element.
66 66
      *
67
-     * @return \PHPUnit_Framework_Test
67
+     * @return AbstractNode|null
68 68
      */
69 69
     public function current()
70 70
     {
Please login to merge, or discard this patch.
vendor/phpunit/php-code-coverage/src/Report/Xml/Facade.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -270,6 +270,9 @@
 block discarded – undo
270 270
         return $this->target;
271 271
     }
272 272
 
273
+    /**
274
+     * @param string $name
275
+     */
273 276
     protected function saveDocument(\DOMDocument $document, $name)
274 277
     {
275 278
         $filename = sprintf('%s/%s.xml', $this->getTargetDirectory(), $name);
Please login to merge, or discard this patch.
vendor/phpunit/php-code-coverage/src/Report/Xml/Node.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -59,6 +59,9 @@  discard block
 block discarded – undo
59 59
         return new Totals($totalsContainer);
60 60
     }
61 61
 
62
+    /**
63
+     * @param string $name
64
+     */
62 65
     public function addDirectory($name)
63 66
     {
64 67
         $dirNode = $this->getDom()->createElementNS(
@@ -72,6 +75,10 @@  discard block
 block discarded – undo
72 75
         return new Directory($dirNode);
73 76
     }
74 77
 
78
+    /**
79
+     * @param string $name
80
+     * @param string $href
81
+     */
75 82
     public function addFile($name, $href)
76 83
     {
77 84
         $fileNode = $this->getDom()->createElementNS(
Please login to merge, or discard this patch.
vendor/phpunit/php-code-coverage/src/Report/Xml/Project.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -34,6 +34,9 @@
 block discarded – undo
34 34
         );
35 35
     }
36 36
 
37
+    /**
38
+     * @param string $name
39
+     */
37 40
     private function setProjectSourceDirectory($name)
38 41
     {
39 42
         $this->getContextNode()->setAttribute('source', $name);
Please login to merge, or discard this patch.
vendor/phpunit/php-code-coverage/src/Report/Xml/Report.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -12,6 +12,9 @@  discard block
 block discarded – undo
12 12
 
13 13
 class Report extends File
14 14
 {
15
+    /**
16
+     * @param string $name
17
+     */
15 18
     public function __construct($name)
16 19
     {
17 20
         $dom = new \DOMDocument();
@@ -59,6 +62,9 @@  discard block
 block discarded – undo
59 62
         return $this->getUnitObject('trait', $name);
60 63
     }
61 64
 
65
+    /**
66
+     * @param string $tagName
67
+     */
62 68
     private function getUnitObject($tagName, $name)
63 69
     {
64 70
         $node = $this->getContextNode()->appendChild(
Please login to merge, or discard this patch.