Conditions | 3 |
Paths | 3 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
17 | 2 | public function handleReport($report, $subscription, $message) |
|
18 | { |
||
19 | 2 | if ($report->isSuccess()) { |
|
20 | 2 | return; |
|
21 | } |
||
22 | |||
23 | 1 | Log::warning("Notification failed to sent for subscription {$subscription->endpoint}: {$report->getReason()}"); |
|
24 | |||
25 | 1 | if ($report->isSubscriptionExpired()) { |
|
26 | 1 | $subscription->delete(); |
|
27 | } |
||
28 | 1 | } |
|
29 | } |
||
30 |