Completed
Pull Request — develop (#139)
by
unknown
23:07 queued 13:11
created
tests/example.file.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -99,7 +99,6 @@
 block discarded – undo
99 99
         /**
100 100
          * Calculates the price for this specific component.
101 101
          *
102
-         * @param float[] $...additionalPrices Additional costs may be passed
103 102
          *
104 103
          * @return float
105 104
          */
Please login to merge, or discard this patch.
src/phpDocumentor/Reflection/Php/ProjectFactory.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -98,6 +98,7 @@
 block discarded – undo
98 98
 
99 99
     /**
100 100
      * Gets Namespace from the project if it exists, otherwise returns a new namepace
101
+     * @param string $name
101 102
      */
102 103
     private function getNamespaceByName(Project $project, $name): Namespace_
103 104
     {
Please login to merge, or discard this patch.
src/phpDocumentor/Reflection/NodeVisitor/ElementNameResolver.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -111,6 +111,7 @@
 block discarded – undo
111 111
 
112 112
     /**
113 113
      * Resets the state of the object to an empty state.
114
+     * @param string $namespace
114 115
      */
115 116
     private function resetState(?string $namespace = null): void
116 117
     {
Please login to merge, or discard this patch.
src/phpDocumentor/Reflection/Php/Factory/File.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -155,6 +155,7 @@
 block discarded – undo
155 155
 
156 156
     /**
157 157
      * @param Node[] $nodes
158
+     * @param StrategyContainer $strategies
158 159
      */
159 160
     protected function createFileDocBlock(
160 161
         ?Doc $docBlock = null,
Please login to merge, or discard this patch.
tests/assets/phpunit_assert.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -366,6 +366,7 @@  discard block
 block discarded – undo
366 366
      *
367 367
      * @throws ExpectationFailedException
368 368
      * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
369
+     * @param boolean $isNativeType
369 370
      */
370 371
     public static function assertContainsOnly(string $type, iterable $haystack, ?bool $isNativeType = null, string $message = ''): void
371 372
     {
@@ -433,6 +434,7 @@  discard block
 block discarded – undo
433 434
      *
434 435
      * @throws ExpectationFailedException
435 436
      * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
437
+     * @param boolean $isNativeType
436 438
      */
437 439
     public static function assertNotContainsOnly(string $type, iterable $haystack, ?bool $isNativeType = null, string $message = ''): void
438 440
     {
Please login to merge, or discard this patch.