Console Tool Refactoring

main
Mathias Rothenhaeusler 2023-07-26 18:46:45 +02:00
parent 10d7b09c5f
commit 678a2e713b
1 changed files with 1 additions and 2 deletions

View File

@ -13,8 +13,7 @@ class CsvReader
private readonly string $filePath private readonly string $filePath
) { ) {
if (!file_exists($this->filePath)) { if (!file_exists($this->filePath)) {
$handle = fopen($this->filePath, 'wb'); throw new RuntimeException('Input file does not exist.');
fclose($handle);
} }
} }