| Conditions | 3 |
| Paths | 3 |
| Total Lines | 13 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | public function loadInput(): void |
||
| 19 | { |
||
| 20 | $filepath = __DIR__ . '/input.txt'; |
||
| 21 | $input = fopen($filepath, "r"); |
||
| 22 | |||
| 23 | if (!is_resource($input)) { |
||
| 24 | throw new Exception("Could not open input file: {$filepath}"); |
||
| 25 | } |
||
| 26 | |||
| 27 | while (!feof($input)) { |
||
| 28 | $this->changes[] = intval(fgets($input)); |
||
| 29 | } |
||
| 30 | fclose($input); |
||
| 31 | } |
||
| 97 |