Total Complexity | 2 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class Exception extends PHPException implements SevereExceptionInterface, LocatableExceptionInterface |
||
13 | { |
||
14 | use HasSeverity; |
||
15 | |||
16 | /** |
||
17 | * If required, set the file and line where the Exception was thrown. |
||
18 | * |
||
19 | * @param string $file |
||
20 | * @param int $line |
||
21 | * |
||
22 | * @return $this |
||
23 | */ |
||
24 | public function onFileLine(string $file, int $line): LocatableExceptionInterface |
||
34 |