GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Branch master (fafdd5)
by Cody
01:21
created

DiscordChannel   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 39
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 3
c 1
b 0
f 0
lcom 1
cbo 1
dl 0
loc 39
ccs 0
cts 15
cp 0
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
A send() 0 13 2
1
<?php
2
3
namespace NotificationChannels\Discord;
4
5
use Illuminate\Notifications\Notification;
6
7
class DiscordChannel
8
{
9
    /**
10
     * @var \NotificationChannels\Discord\Discord
11
     */
12
    protected $discord;
13
14
    /**
15
     * @param \NotificationChannels\Discord\Discord $discord
16
     */
17
    public function __construct(Discord $discord)
18
    {
19
        $this->discord = $discord;
20
    }
21
22
    /**
23
     * Send the given notification.
24
     *
25
     * @param mixed $notifiable
26
     * @param \Illuminate\Notifications\Notification $notification
27
     *
28
     * @return array
29
     *
30
     * @throws \NotificationChannels\Discord\Exceptions\CouldNotSendNotification
31
     */
32
    public function send($notifiable, Notification $notification)
33
    {
34
        if (! $channel = $notifiable->routeNotificationFor('discord')) {
35
            return;
36
        }
37
38
        $message = $notification->toDiscord($notifiable);
39
40
        return $this->discord->send($channel, [
41
            'content' => $message->body,
42
            'embed' => $message->embed,
43
        ]);
44
    }
45
}
46