1<?php 2 3namespace dokuwiki\test\Search\Collection; 4 5use dokuwiki\Search\Collection\LookupCollection; 6 7/** 8 * A mock extending LookupCollection with custom index names for testing 9 */ 10class MockLookupCollection extends LookupCollection 11{ 12 /** @inheritdoc */ 13 public function __construct($entity = 'entity', $token = 'token', $freq = 'freq', $reverse = 'reverse') 14 { 15 parent::__construct($entity, $token, $freq, $reverse); 16 } 17} 18