Completed
Push — master ( 326b3e...061c53 )
by Freek
09:13
created

Notifiable::routeNotificationForSlack()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
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
    /**
12
     * Route notifications for the mail channel.
13
     *
14
     * @return string
15
     */
16
    public function routeNotificationForMail()
17
    {
18
        return config('laravel-backup.notifications.mail.to');
19
    }
20
21
    public function routeNotificationForSlack()
22
    {
23
        return config('laravel-backup.notifications.slack.webhook_url');
24
    }
25
26
    public function getKey()
27
    {
28
        return 1;
29
    }
30
}
31