DocBlock: move public method up

This commit is contained in:
TomasVotruba
2017-11-10 23:53:51 +01:00
committed by Jaap van Otterdijk
parent 0cb4b04fa6
commit c9c580e482
+12 -12
View File
@@ -206,18 +206,6 @@ final class DocBlock
return false; return false;
} }
/**
* Adds a tag to this DocBlock.
*
* @param Tag $tag The tag to add.
*
* @return void
*/
private function addTag(Tag $tag)
{
$this->tags[] = $tag;
}
/** /**
* Remove a tag from this DocBlock. * Remove a tag from this DocBlock.
* *
@@ -234,4 +222,16 @@ final class DocBlock
} }
} }
} }
/**
* Adds a tag to this DocBlock.
*
* @param Tag $tag The tag to add.
*
* @return void
*/
private function addTag(Tag $tag)
{
$this->tags[] = $tag;
}
} }