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