2019-09-13 17:32:42 -03:00
|
|
|
<?php
|
2021-02-21 20:54:30 -03:00
|
|
|
namespace Aldarien\Common\Definition\DatabaseEngine;
|
2019-09-13 17:32:42 -03:00
|
|
|
|
2021-02-21 20:54:30 -03:00
|
|
|
interface Requirements {
|
2019-09-13 17:32:42 -03:00
|
|
|
public function dsnSpecs(): array;
|
|
|
|
public function getDSN(object $config): string;
|
|
|
|
public function hasUser(): bool;
|
|
|
|
}
|