Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| <?php | |
| /* | |
| * To change this license header, choose License Headers in Project Properties. | |
| * To change this template file, choose Tools | Templates | |
| * and open the template in the editor. | |
| */ | |
| namespace App\Models\Interfaces; | |
| /** | |
| * | |
| * @author lennartbinscheck | |
| */ | |
| interface DatabaseInterface { | |
| public function getDatabase(); | |
| public function query($sql, $placeholders); | |
| public function insert($sql, $placeholders); | |
| public function update($sql, $placeholders); | |
| public function delete($sql, $placeholders); | |
| } |