Completed
Pull Request — develop (#128)
by Jaap
03:47
created
src/phpDocumentor/Reflection/Php/Factory/ClassConstantIterator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
      */
59 59
     public function getName(): string
60 60
     {
61
-        return (string) $this->classConstants->consts[$this->index]->name;
61
+        return (string)$this->classConstants->consts[$this->index]->name;
62 62
     }
63 63
 
64 64
     /**
Please login to merge, or discard this patch.
src/phpDocumentor/Reflection/Php/Factory/PropertyIterator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@
 block discarded – undo
104 104
      */
105 105
     public function getName(): string
106 106
     {
107
-        return (string) $this->property->props[$this->index]->name;
107
+        return (string)$this->property->props[$this->index]->name;
108 108
     }
109 109
 
110 110
     /**
Please login to merge, or discard this patch.