xref: /dokuwiki/inc/Search/Collection/PageTitleCollection.php (revision d92c078c66fe0feb3beeeb1a383e15ca031fb4f8)
1<?php
2
3namespace dokuwiki\Search\Collection;
4
5/**
6 * Collection for page titles
7 *
8 * Stores the title of each page as a direct 1:1 mapping.
9 *
10 * @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
11 * @author Andreas Gohr <andi@splitbrain.org>
12 */
13class PageTitleCollection extends DirectCollection
14{
15    /** @inheritdoc */
16    public function __construct()
17    {
18        parent::__construct('page', 'title');
19    }
20}
21