Skip to content

Commit

Permalink
fixes phpDocumentor#349: filtering out @deprecated; same thing as with
Browse files Browse the repository at this point in the history
  • Loading branch information
mvriel committed Jan 10, 2012
1 parent 6917b65 commit 3b96511
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions docs/CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
the PHP.net manual. This goes from most explicit to most implicit.
* FIXED: Long texts containing XML characters caused issues; altered
DocBlox to put those in a CDATA sections.
* FIXED: @deprecated was duplicated during inheritance and thus shown multiple
times in the reports.

01/08/2012: Version 0.18.0
--------------------------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,10 @@ function copyTo(
$inherited->getReferrerString($this->class->getFQCN())
);

// should not duplicate @todo; it only belongs to the original instance
// should not duplicate @todo or @deprecated; it only belongs
// to the original instance
$inherited->getDocBlock()->filterTags('todo');
$inherited->getDocBlock()->filterTags('deprecated');
}

/**
Expand Down

0 comments on commit 3b96511

Please sign in to comment.