Passed
Pull Request — master (#9)
by Vincent
03:39
created
src/Metadata/Driver/AnnotationsDriver.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -174,15 +174,15 @@
 block discarded – undo
174 174
                 }
175 175
 
176 176
                 /** @var DocBlock\Tags\Var_ $tag */
177
-                return ['type', $this->findType((string)$tag->getType(), $property)];
177
+                return ['type', $this->findType((string) $tag->getType(), $property)];
178 178
 
179 179
             case 'since':
180 180
                 /** @var DocBlock\Tags\Since $tag */
181
-                return ['since', (string)$tag->getVersion()];
181
+                return ['since', (string) $tag->getVersion()];
182 182
 
183 183
             case 'until':
184 184
                 /** @var DocBlock\Tags\Generic $tag */
185
-                return ['until', (string)$tag->getDescription()];
185
+                return ['until', (string) $tag->getDescription()];
186 186
 
187 187
             case 'SerializeIgnore':
188 188
                 return ['SerializeIgnore', true];
Please login to merge, or discard this patch.