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