The variable $line seems to be defined by a foreach iteration on line 37. Are you sure the iterator is never empty, otherwise this variable is not defined?
Loading history...
47
}
48
49
/**
50
* @internal
51
*/
52
public static function try(callable $callback, ?string $message = null): mixed
53
{
54
try {
55
return $callback();
56
} catch (Throwable $exception) {
57
throw new static($message ?? $exception->getMessage(), previous: $exception);