Completed
Push — develop ( 9193e7...62056c )
by Jaap
12:45 queued 02:43
created
src/phpDocumentor/Descriptor/Builder/Reflector/FileAssembler.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -227,8 +227,8 @@
 block discarded – undo
227 227
     }
228 228
 
229 229
     /**
230
-     * @param $data
231
-     * @param $fileDescriptor
230
+     * @param File $data
231
+     * @param FileDescriptor $fileDescriptor
232 232
      */
233 233
     protected function overridePackageTag($data, $fileDescriptor)
234 234
     {
Please login to merge, or discard this patch.
src/phpDocumentor/Descriptor/Builder/Reflector/FunctionAssembler.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -114,7 +114,7 @@
 block discarded – undo
114 114
      * Creates a new ArgumentDescriptor from the given Reflector and Param.
115 115
      *
116 116
      * @param FunctionDescriptor                  $functionDescriptor
117
-     * @param FunctionReflector\ArgumentReflector $argument
117
+     * @param Argument $argument
118 118
      *
119 119
      * @return ArgumentDescriptor
120 120
      */
Please login to merge, or discard this patch.
src/phpDocumentor/Descriptor/ProjectDescriptorBuilder.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -223,7 +223,7 @@  discard block
 block discarded – undo
223 223
      *
224 224
      * @param DescriptorAbstract $descriptor
225 225
      *
226
-     * @return DescriptorAbstract|null
226
+     * @return null|Filterable
227 227
      */
228 228
     protected function filterAndValidateDescriptor($descriptor)
229 229
     {
@@ -290,7 +290,7 @@  discard block
 block discarded – undo
290 290
     }
291 291
 
292 292
     /**
293
-     * @return string
293
+     * @return PackageDescriptor
294 294
      */
295 295
     public function getDefaultPackage()
296 296
     {
Please login to merge, or discard this patch.
src/phpDocumentor/Descriptor/Tag/BaseTypes/TypedAbstract.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
     /**
27 27
      * Sets a list of types associated with this tag.
28 28
      *
29
-     * @param Collection $types
29
+     * @param Type $types
30 30
      *
31 31
      * @return void
32 32
      */
Please login to merge, or discard this patch.
src/phpDocumentor/Parser/Command/Project/ParseCommand.php 1 patch
Doc Comments   +8 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,6 +51,9 @@  discard block
 block discarded – undo
51 51
     /** @var Translator */
52 52
     protected $translator;
53 53
 
54
+    /**
55
+     * @param \phpDocumentor\Translator\Translator $translator
56
+     */
54 57
     public function     __construct($builder, $parser, $translator, $files)
55 58
     {
56 59
         $this->builder    = $builder;
@@ -344,7 +347,7 @@  discard block
 block discarded – undo
344 347
      *
345 348
      * @param InputInterface $input
346 349
      *
347
-     * @return \Symfony\Component\Console\Helper\HelperInterface|null
350
+     * @return null|ProgressHelper
348 351
      */
349 352
     protected function getProgressBar(InputInterface $input)
350 353
     {
@@ -372,6 +375,10 @@  discard block
 block discarded – undo
372 375
      * @return string
373 376
      */
374 377
     // @codingStandardsIgnoreStart
378
+
379
+    /**
380
+     * @param string $text
381
+     */
375 382
     protected function __($text, $parameters = array())
376 383
     // @codingStandardsIgnoreEnd
377 384
     {
Please login to merge, or discard this patch.
src/phpDocumentor/Parser/Middleware/CacheMiddleware.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -81,6 +81,7 @@
 block discarded – undo
81 81
      * Convert path to ItemName
82 82
      *
83 83
      * @param path
84
+     * @param string $path
84 85
      * @return string
85 86
      */
86 87
     private function getItemName($path)
Please login to merge, or discard this patch.
Validator/Constraints/Functions/IsParamTypeNotAnIdeDefaultValidator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@
 block discarded – undo
70 70
     /**
71 71
      * Verifies if this type is a possible IDE default.
72 72
      *
73
-     * @param UnknownTypeDescriptor|TypeInterface $type
73
+     * @param Type $type
74 74
      *
75 75
      * @return bool
76 76
      */
Please login to merge, or discard this patch.
unit/phpDocumentor/Descriptor/Builder/Reflector/ArgumentAssemblerTest.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -88,8 +88,8 @@
 block discarded – undo
88 88
     }
89 89
 
90 90
     /**
91
-     * @param $name
92
-     * @param $type
91
+     * @param string $name
92
+     * @param string $type
93 93
      * @return Argument
94 94
      */
95 95
     protected function givenAnArgumentReflectorWithNameAndType($name, $type)
Please login to merge, or discard this patch.
unit/phpDocumentor/Descriptor/Builder/Reflector/ClassAssemblerTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
     /**
70 70
      * Create a ClassReflector mock
71 71
      *
72
-     * @return MockInterface
72
+     * @return Class_
73 73
      */
74 74
     protected function getClassReflectorDescriptor()
75 75
     {
Please login to merge, or discard this patch.