| Total Complexity | 3 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | class FileExecutor implements InProcessFileExecutor |
||
| 14 | { |
||
| 15 | /** @var InProcessCommandExecutor $wrappedExecutor */ |
||
| 16 | protected $wrappedExecutor; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @param InProcessCommandExecutor $wrappedExecutor |
||
| 20 | */ |
||
| 21 | public function __construct($wrappedExecutor) |
||
| 24 | } |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @param string $filename |
||
| 28 | * @return Callable |
||
| 29 | */ |
||
| 30 | public function getExecuteFileCallable($filename) |
||
| 33 | } |
||
| 34 | |||
| 35 | public function resultSetToArray($data) |
||
| 40 |