xref: /plugin/struct/_test/mock/SchemaNoDB.php (revision 4cd5cc28e2bf004aed676e9b1f46cc188a4b2240)
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) {
11        $this->table = $table;
12        $this->ts = $ts;
13    }
14
15}
16