Completed
Push — master ( 45ada3...ea48fd )
by Mike
10s
created
src/DocBlock/Tags/PropertyRead.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@
 block discarded – undo
97 97
     /**
98 98
      * Returns the variable's type or null if unknown.
99 99
      *
100
-     * @return Type|null
100
+     * @return Type
101 101
      */
102 102
     public function getType()
103 103
     {
Please login to merge, or discard this patch.
src/DocBlock/Tags/PropertyWrite.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@
 block discarded – undo
97 97
     /**
98 98
      * Returns the variable's type or null if unknown.
99 99
      *
100
-     * @return Type|null
100
+     * @return Type
101 101
      */
102 102
     public function getType()
103 103
     {
Please login to merge, or discard this patch.
src/DocBlock/Tags/Since.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.
tests/integration/ReconstitutingADocBlockTest.php 1 patch
Unused Use Statements   -5 removed lines patch added patch discarded remove patch
@@ -12,11 +12,6 @@
 block discarded – undo
12 12
 
13 13
 namespace phpDocumentor\Reflection;
14 14
 
15
-use phpDocumentor\Reflection\DocBlock\Description;
16
-use phpDocumentor\Reflection\DocBlock\StandardTagFactory;
17
-use phpDocumentor\Reflection\DocBlock\Tag;
18
-use phpDocumentor\Reflection\DocBlock\Tags\See;
19
-
20 15
 /**
21 16
  * @coversNothing
22 17
  */
Please login to merge, or discard this patch.