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