Total Complexity | 3 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
8 | class FileExecutor implements InProcessFileExecutor |
||
9 | { |
||
10 | /** @var InProcessCommandExecutor $wrappedExecutor */ |
||
11 | protected $wrappedExecutor; |
||
12 | |||
13 | /** |
||
14 | * @param InProcessCommandExecutor $wrappedExecutor |
||
15 | */ |
||
16 | public function __construct($wrappedExecutor) |
||
19 | } |
||
20 | |||
21 | /** |
||
22 | * @param string $filename |
||
23 | * @return Callable |
||
24 | */ |
||
25 | public function getExecuteFileCallable($filename) |
||
28 | } |
||
29 | |||
30 | public function resultSetToArray($data) |
||
35 |