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