Conditions | 3 |
Paths | 3 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 3.0261 |
Changes | 0 |
1 | <?php |
||
16 | 1 | public function __construct(string $pathPdfToText = '') |
|
17 | { |
||
18 | 1 | if ('' === $pathPdfToText) { |
|
19 | 1 | $pathPdfToText = (string) shell_exec('which pdftotext'); |
|
20 | 1 | if ('' === $pathPdfToText) { |
|
21 | throw new \RuntimeException('pdftotext command was not found'); |
||
22 | } |
||
23 | } |
||
24 | 1 | $this->pdftotext = $pathPdfToText; |
|
25 | 1 | } |
|
26 | |||
45 |