last_select = [ 'table' => $table, 'search' => $search, 'params' => $params ]; return []; } public function insert(string $table, DSOInterface $dso) : bool { $this->dsn = 'inserting'; $this->last_insert = [ 'table' => $table, 'dso' => $dso ]; return true; } public function update(string $table, DSOInterface $dso) : bool { $this->last_update = [ 'table' => $table, 'dso' => $dso ]; return true; } public function delete(string $table, DSOInterface $dso) : bool { $this->last_delete = [ 'table' => $table, 'dso' => $dso ]; return true; } public function errorInfo() { return []; } }