This commit is contained in:
2019-09-13 17:32:42 -03:00
parent 7e565657f1
commit 2f3de1145a
5 changed files with 527 additions and 0 deletions

View File

@ -0,0 +1,8 @@
<?php
namespace Aldarien\Common\Definition;
interface DatabaseEngineRequirements {
public function dsnSpecs(): array;
public function getDSN(object $config): string;
public function hasUser(): bool;
}