Total Complexity | 3 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class PaystackConnectionException extends PaystackException |
||
11 | { |
||
12 | protected ?string $url = null; |
||
13 | |||
14 | public function __construct(string $message = '', int $code = 0, ?string $url = null, ?Exception $previous = null) |
||
18 | } |
||
19 | |||
20 | public function getUrl(): ?string |
||
23 | } |
||
24 | |||
25 | public static function connectionFailed(string $url, ?Exception $previous = null): self |
||
35 |