1*f411d872SAndreas Gohr<?php 2*f411d872SAndreas Gohr 3*f411d872SAndreas Gohrnamespace dokuwiki\plugin\struct\test\mock; 4*f411d872SAndreas Gohr 5*f411d872SAndreas Gohrclass SchemaNoDB extends \dokuwiki\plugin\struct\meta\Schema { 6*f411d872SAndreas Gohr 7*f411d872SAndreas Gohr public $columns = array(); 8*f411d872SAndreas Gohr 9*f411d872SAndreas Gohr /** @noinspection PhpMissingParentConstructorInspection */ 10*f411d872SAndreas Gohr public function __construct($table, $ts, $islookup = false) { 11*f411d872SAndreas Gohr $this->table = $table; 12*f411d872SAndreas Gohr $this->ts = $ts; 13*f411d872SAndreas Gohr $this->islookup = $islookup; 14*f411d872SAndreas Gohr } 15*f411d872SAndreas Gohr 16*f411d872SAndreas Gohr} 17