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
* @experimental
53
*/
54
public static function try(callable $callback, ?string $message = null): mixed
55
{
56
try {
57
return $callback();
58
} catch (Throwable $exception) {
59
throw new static($message ?? $exception->getMessage(), previous: $exception);