Skip to content

Commit 78c3ed2

Browse files
committed
Fix issues reported by Style CI
1 parent 6c08feb commit 78c3ed2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/Exceptions/CouldNotSendNotification.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,19 @@ class CouldNotSendNotification extends \Exception
99
private $response;
1010

1111
/**
12-
* @param Response $response
13-
* @param string $message
14-
* @param int|null $code
12+
* @param Response $response
13+
* @param string $message
14+
* @param int|null $code
1515
*/
16-
public function __construct(Response $response, string $message, int $code = null)
16+
public function __construct(Response $response, string $message, ?int $code = null)
1717
{
1818
parent::__construct($message, $code ?? $response->getStatusCode());
1919

2020
$this->response = $response;
2121
}
2222

2323
/**
24-
* @param Response $response
24+
* @param Response $response
2525
* @return self
2626
*/
2727
public static function serviceRespondedWithAnError(Response $response)

0 commit comments

Comments
 (0)