Total Complexity | 3 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
5 | class SQLiteDatabase implements DatabaseInterface |
||
6 | { |
||
7 | public function backup() |
||
9 | // TODO: Implement backup() method. |
||
10 | } |
||
11 | |||
12 | public function restore(string $backupFile) |
||
13 | { |
||
14 | // TODO: Implement restore() method. |
||
15 | } |
||
16 | |||
17 | /** |
||
18 | * {@inheritdoc} |
||
19 | */ |
||
20 | public function getFileExtension() |
||
22 | // TODO: Implement getFileExtension() method. |
||
23 | } |
||
25 |