Passed
Push — distributed_digests ( 4c8269...63d323 )
by Ilia
15:43
created
vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Deprecated.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -43,6 +43,9 @@
 block discarded – undo
43 43
     /** @var string The version vector. */
44 44
     private $version = '';
45 45
 
46
+    /**
47
+     * @param string $version
48
+     */
46 49
     public function __construct($version = null, Description $description = null)
47 50
     {
48 51
         Assert::nullOrStringNotEmpty($version);
Please login to merge, or discard this patch.
vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Example.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -12,8 +12,6 @@
 block discarded – undo
12 12
 
13 13
 namespace phpDocumentor\Reflection\DocBlock\Tags;
14 14
 
15
-use phpDocumentor\Reflection\DocBlock\Tag;
16
-
17 15
 /**
18 16
  * Reflection class for a {@}example tag in a Docblock.
19 17
  */
Please login to merge, or discard this patch.
vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Method.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -219,6 +219,9 @@
 block discarded – undo
219 219
         return $arguments;
220 220
     }
221 221
 
222
+    /**
223
+     * @return string
224
+     */
222 225
     private static function stripRestArg($argument)
223 226
     {
224 227
         if (strpos($argument, '...') === 0) {
Please login to merge, or discard this patch.
vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Source.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -31,6 +31,10 @@
 block discarded – undo
31 31
     /** @var int|null The number of lines, relative to the starting line. NULL means "to the end". */
32 32
     private $lineCount = null;
33 33
 
34
+    /**
35
+     * @param integer $startingLine
36
+     * @param integer $lineCount
37
+     */
34 38
     public function __construct($startingLine, $lineCount = null, Description $description = null)
35 39
     {
36 40
         Assert::integerish($startingLine);
Please login to merge, or discard this patch.
vendor/phpdocumentor/reflection-docblock/src/DocBlockFactory.php 1 patch
Doc Comments   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
     }
64 64
 
65 65
     /**
66
-     * @param object|string $docblock A string containing the DocBlock to parse or an object supporting the
66
+     * @param \ReflectionClass $docblock A string containing the DocBlock to parse or an object supporting the
67 67
      *                                getDocComment method (such as a ReflectionClass object).
68 68
      * @param Types\Context $context
69 69
      * @param Location      $location
@@ -103,6 +103,10 @@  discard block
 block discarded – undo
103 103
         );
104 104
     }
105 105
 
106
+    /**
107
+     * @param integer $tagName
108
+     * @param string $handler
109
+     */
106 110
     public function registerTagHandler($tagName, $handler)
107 111
     {
108 112
         $this->tagFactory->registerTagHandler($tagName, $handler);
@@ -254,7 +258,7 @@  discard block
 block discarded – undo
254 258
     }
255 259
 
256 260
     /**
257
-     * @param $tags
261
+     * @param string $tags
258 262
      * @return string
259 263
      */
260 264
     private function filterTagBlock($tags)
Please login to merge, or discard this patch.
vendor/phpdocumentor/type-resolver/examples/Classy.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace My\Example;
4 4
 
5
-use Mockery as m;
6 5
 use phpDocumentor\Reflection\Types;
7 6
 
8 7
 class Classy
Please login to merge, or discard this patch.
vendor/phpspec/prophecy/spec/Prophecy/Comparator/ProphecyComparatorSpec.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace spec\Prophecy\Comparator;
4 4
 
5 5
 use PhpSpec\ObjectBehavior;
6
-use Prophecy\Argument;
7 6
 use Prophecy\Prophet;
8 7
 
9 8
 class ProphecyComparatorSpec extends ObjectBehavior
Please login to merge, or discard this patch.
vendor/symfony/polyfill-mbstring/Mbstring.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -270,6 +270,9 @@  discard block
 block discarded – undo
270 270
         return self::mb_detect_encoding($var, array($encoding)) || false !== @iconv($encoding, $encoding, $var);
271 271
     }
272 272
 
273
+    /**
274
+     * @return string
275
+     */
273 276
     public static function mb_detect_encoding($str, $encodingList = null, $strict = false)
274 277
     {
275 278
         if (null === $encodingList) {
@@ -574,6 +577,9 @@  discard block
 block discarded – undo
574 577
         return $code;
575 578
     }
576 579
 
580
+    /**
581
+     * @param boolean $part
582
+     */
577 583
     private static function getSubpart($pos, $part, $haystack, $encoding)
578 584
     {
579 585
         if (false === $pos) {
@@ -621,6 +627,9 @@  discard block
 block discarded – undo
621 627
         return self::mb_convert_case($s[0], MB_CASE_UPPER, 'UTF-8');
622 628
     }
623 629
 
630
+    /**
631
+     * @param string $file
632
+     */
624 633
     private static function getData($file)
625 634
     {
626 635
         if (file_exists($file = __DIR__.'/Resources/unidata/'.$file.'.php')) {
Please login to merge, or discard this patch.
vendor/symfony/yaml/Tests/Command/LintCommandTest.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -64,6 +64,7 @@
 block discarded – undo
64 64
     }
65 65
 
66 66
     /**
67
+     * @param string $content
67 68
      * @return string Path to the new file
68 69
      */
69 70
     private function createFile($content)
Please login to merge, or discard this patch.