Total Complexity | 8 |
Total Lines | 43 |
Duplicated Lines | 0 % |
Coverage | 84% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class XlsxToCsvFolderConverter |
||
12 | { |
||
13 | 1 | use WhichTrait; |
|
14 | |||
15 | /** @var string Location of xlsx2csvPath executable */ |
||
16 | private $xlsx2csvPath; |
||
17 | |||
18 | 4 | public function __construct(string $xlsx2csvPath = '') |
|
24 | 4 | } |
|
25 | |||
26 | 4 | public function xlsx2csvPath(): string |
|
27 | { |
||
28 | 4 | return $this->xlsx2csvPath; |
|
29 | } |
||
30 | |||
31 | 4 | public function convert(string $source, string $destination): void |
|
54 | ); |
||
55 | } |
||
58 |