| 1 |
<?php |
| 2 |
|
| 3 |
namespace ResponsiveMenu\Database; |
| 4 |
|
| 5 |
interface Database { |
| 6 |
public function update($table, array $to_update, array $where); |
| 7 |
public function delete($table, $name); |
| 8 |
public function all($table); |
| 9 |
public function insert($table, array $arguments); |
| 10 |
} |
| 11 |
|