1 | <?php |
||
10 | class SimpleDBAL |
||
11 | { |
||
12 | |||
13 | const PDO = 'pdo'; |
||
14 | const MYSQLI = 'mysqli'; |
||
15 | |||
16 | /** |
||
17 | * @param CredentialsInterface $credentials |
||
18 | * @param string $adapter |
||
19 | * @return AdapterInterface |
||
20 | */ |
||
21 | public static function factory(CredentialsInterface $credentials, string $adapter = self::PDO, array $options = null): AdapterInterface |
||
34 | } |
||
35 |