doc/lib: Rename SectionFilterIterator to DocSectionFilterIterator

refs #6630
This commit is contained in:
Eric Lippmann 2015-02-11 14:06:41 +01:00
parent 6c6c41a4f2
commit d1aed4f773
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ use Icinga\Data\Tree\TreeNodeIterator;
* {@inheritdoc}
* }
*/
class SectionFilterIterator extends RecursiveFilterIterator implements Countable
class DocSectionFilterIterator extends RecursiveFilterIterator implements Countable
{
/**
* Chapter to filter for

View File

@ -61,7 +61,7 @@ class DocSectionRenderer extends DocRenderer
public function __construct(SimpleTree $tree, $chapter = null)
{
if ($chapter !== null) {
$filter = new SectionFilterIterator($tree->getIterator(), $chapter);
$filter = new DocSectionFilterIterator($tree->getIterator(), $chapter);
if ($filter->isEmpty()) {
throw new ChapterNotFoundException(
mt('doc', 'Chapter %s not found'), $chapter