18c551fd7SAndreas Gohr<?php 28c551fd7SAndreas Gohr 38c551fd7SAndreas Gohrnamespace dokuwiki\plugin\struct\test\mock; 48c551fd7SAndreas Gohr 58c551fd7SAndreas Gohruse \dokuwiki\plugin\struct\meta; 68c551fd7SAndreas Gohr 78c551fd7SAndreas Gohrclass QueryBuilder extends meta\QueryBuilder { 88c551fd7SAndreas Gohr public $from; 9*2b5df26eSAndreas Gohr 10*2b5df26eSAndreas Gohr public function fixPlaceholders($sql) { 11*2b5df26eSAndreas Gohr return parent::fixPlaceholders($sql); 12*2b5df26eSAndreas Gohr } 13*2b5df26eSAndreas Gohr 148c551fd7SAndreas Gohr} 15