Skip to content

Commit 30ac201

Browse files
authored
Use nullable (#319)
1 parent 09bf347 commit 30ac201

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Exceptions/NonRetryableException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
class NonRetryableException extends Exception implements NonRetryableExceptionContract
1111
{
12-
public function __construct($message = '', $code = 0, Throwable $previous = null)
12+
public function __construct($message = '', $code = 0, ?Throwable $previous = null)
1313
{
1414
parent::__construct($message, $code, $previous);
1515
}

0 commit comments

Comments
 (0)