Total Complexity | 3 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class Queued implements CommandExecutor, FileExecutor |
||
12 | { |
||
13 | /** |
||
14 | * @param string $sql |
||
15 | * @return Callable |
||
16 | */ |
||
17 | public function getExecuteCommandCallable($sql) |
||
22 | }; |
||
23 | } |
||
24 | |||
25 | /** |
||
26 | * @param string $filename |
||
27 | * @return Callable |
||
28 | */ |
||
29 | public function getExecuteFileCallable($filename) |
||
30 | { |
||
31 | /// @todo |
||
32 | throw new \Exception('Not implemented yet'); |
||
33 | return function() { |
||
34 | }; |
||
35 | } |
||
36 | |||
37 | public function resultSetToArray($data) |
||
41 | } |
||
42 | } |
||
43 |