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 474fd9e commit 0cb4b04Copy full SHA for 0cb4b04
tests/unit/DocBlockTest.php
@@ -262,11 +262,16 @@ public function testDocBlockKnowsIfItIsTheEndOfADocBlockTemplate()
262
public function testRemoveTag()
263
{
264
$someTag = new Deprecated();
265
+ $anotherTag = new Deprecated();
266
267
$fixture = new DocBlock('', null, [$someTag]);
268
269
$this->assertCount(1, $fixture->getTags());
270
271
+ $fixture->removeTag($anotherTag);
272
+
273
+ $this->assertCount(1, $fixture->getTags());
274
275
$fixture->removeTag($someTag);
276
277
$this->assertCount(0, $fixture->getTags());
0 commit comments