We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0cb4b04 commit c9c580eCopy full SHA for c9c580e
src/DocBlock.php
@@ -206,18 +206,6 @@ public function hasTag($name)
206
return false;
207
}
208
209
- /**
210
- * Adds a tag to this DocBlock.
211
- *
212
- * @param Tag $tag The tag to add.
213
214
- * @return void
215
- */
216
- private function addTag(Tag $tag)
217
- {
218
- $this->tags[] = $tag;
219
- }
220
-
221
/**
222
* Remove a tag from this DocBlock.
223
*
@@ -234,4 +222,16 @@ public function removeTag(Tag $tagToRemove)
234
235
236
224
225
+
226
+ /**
227
+ * Adds a tag to this DocBlock.
228
+ *
229
+ * @param Tag $tag The tag to add.
230
231
+ * @return void
232
+ */
233
+ private function addTag(Tag $tag)
+ {
+ $this->tags[] = $tag;
+ }
237
0 commit comments