Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| <?php | |
| namespace Luxian\Database; | |
| interface DatabaseInterface | |
| { | |
| public function query( | |
| string $sql, | |
| array $params = [] | |
| ): DatabaseStatementInterface; | |
| public function beginTransaction(): void; | |
| public function commitTransaction(): void; | |
| public function rollBackTransaction(): void; | |
| } |