1<?php 2 3namespace dokuwiki\Search\Collection; 4 5/** 6 * Fulltext search collection for wiki pages 7 * 8 * Manages the indexes used for fulltext search of page contents. 9 * 10 * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) 11 * @author Andreas Gohr <andi@splitbrain.org> 12 * @author Tom N Harris <tnharris@whoopdedo.org> 13 */ 14class PageFulltextCollection extends FrequencyCollection 15{ 16 /** @inheritdoc */ 17 public function __construct() 18 { 19 parent::__construct('page', 'w', 'i', 'pageword', true); 20 } 21} 22