Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
11 | public static function couldNotLoad(string $puzzleType, string $input, string $error = ''): self |
||
12 | { |
||
13 | return new self(sprintf( |
||
14 | 'Invalid format. Could not load the %s from input:%s%s%s%s', |
||
15 | $puzzleType, |
||
16 | PHP_EOL, |
||
17 | $input, |
||
18 | PHP_EOL, |
||
19 | $error |
||
20 | )); |
||
23 |