Completed
Pull Request — master (#229)
by
unknown
35:19 queued 25:14
created
src/DocBlock/Tags/Version.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -46,6 +46,9 @@  discard block
 block discarded – undo
46 46
     /** @var string|null The version vector. */
47 47
     private $version;
48 48
 
49
+    /**
50
+     * @param string $version
51
+     */
49 52
     public function __construct(?string $version = null, ?Description $description = null)
50 53
     {
51 54
         Assert::nullOrStringNotEmpty($version);
@@ -54,6 +57,11 @@  discard block
 block discarded – undo
54 57
         $this->description = $description;
55 58
     }
56 59
 
60
+    /**
61
+     * @param string $body
62
+     * @param \Mockery\LegacyMockInterface $descriptionFactory
63
+     * @param TypeContext $context
64
+     */
57 65
     public static function create(
58 66
         ?string $body,
59 67
         ?DescriptionFactory $descriptionFactory = null,
Please login to merge, or discard this patch.
src/DocBlock.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -43,6 +43,7 @@
 block discarded – undo
43 43
      * @param DocBlock\Tag[] $tags
44 44
      * @param Types\Context  $context  The context in which the DocBlock occurs.
45 45
      * @param Location       $location The location within the file that this DocBlock occurs in.
46
+     * @param DocBlock\Description $description
46 47
      */
47 48
     public function __construct(
48 49
         string $summary = '',
Please login to merge, or discard this patch.