Notifiable::routeNotificationForSlack()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 0
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace Spatie\Backup\Notifications;
4
5
use Illuminate\Notifications\Notifiable as NotifiableTrait;
6
7
class Notifiable
8
{
9
    use NotifiableTrait;
10
11
    public function routeNotificationForMail()
12
    {
13
        return config('backup.notifications.mail.to');
14
    }
15
16
    public function routeNotificationForSlack()
17
    {
18
        return config('backup.notifications.slack.webhook_url');
19
    }
20
21
    public function getKey()
22
    {
23
        return 1;
24
    }
25
}
26