Skip to content

Commit 6ab6a14

Browse files
committed
Fix type hint for previous parameter in InvalidJobException class constructor.
1 parent c04cae3 commit 6ab6a14

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/InvalidJobException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class InvalidJobException extends \Exception
3131
* @param int $code
3232
* @param Throwable|null $previous
3333
*/
34-
public function __construct($serialized, $message = '', $code = 0, Throwable $previous = null)
34+
public function __construct($serialized, $message = '', $code = 0, $previous = null)
3535
{
3636
$this->serialized = $serialized;
3737
parent::__construct($message, $code, $previous);

0 commit comments

Comments
 (0)