Reorder and Added missing databases

This commit is contained in:
2023-02-28 23:41:51 -03:00
parent a326904825
commit 99344fda7d
17 changed files with 260 additions and 251 deletions

12
src/Database/SQLite.php Normal file
View File

@ -0,0 +1,12 @@
<?php
namespace ProVM\Database;
use ProVM\Implement\Database;
class SQLite extends Database
{
public function getDsn(): string
{
return "sqlite:{$this->getHost()}";
}
}