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