refactor MySQL component to support SQLite at the same time

This commit is contained in:
crazywhalecc
2022-08-27 19:45:23 +08:00
parent e9b6965678
commit 085472a12c
8 changed files with 199 additions and 160 deletions

View File

@@ -0,0 +1,11 @@
<?php
declare(strict_types=1);
namespace ZM\Store\Database;
use ZM\Exception\ZMException;
class DBException extends ZMException
{
}