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
Push — master ( fafdd5...fa6b31 )
by Cody
37:25
created

src/DiscordMessage.php (1 issue)

parameters are used.

Unused Code Minor

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
namespace NotificationChannels\Discord;
4
5
class DiscordMessage
6
{
7
    /**
8
     * The text content of the message.
9
     *
10
     * @var string
11
     */
12
    public $body;
13
14
    /**
15
     * The embedded object attached to the message.
16
     *
17
     * @var array
18
     */
19
    public $embed;
20
21
    /**
22
     * @param string     $body
23
     * @param array|null $embed
24
     *
25
     * @return static
26
     */
27 1
    public static function create($body = '', $embed = [])
0 ignored issues
show
The parameter $embed is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
28
    {
29 1
        return new static($body);
30
    }
31
32
    /**
33
     * @param string $body
34
     * @param array  $embed
35
     */
36 4
    public function __construct($body = '', $embed = [])
37
    {
38 4
        $this->body = $body;
39 4
        $this->embed = $embed;
40 4
    }
41
42
    /**
43
     * Set the text content of the message.
44
     *
45
     * @param string $body
46
     *
47
     * @return $this
48
     */
49 2
    public function body($body)
50
    {
51 2
        $this->body = $body;
52
53 2
        return $this;
54
    }
55
56
    /**
57
     * Set the embedded object.
58
     *
59
     * @param $embed
60
     *
61
     * @return $this
62
     */
63 1
    public function embed($embed)
64
    {
65 1
        $this->embed = $embed;
66
67 1
        return $this;
68
    }
69
}
70