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
Pull Request — master (#58)
by Lukas
07:33 queued 04:01
created

AttachmentHelpers::setAndroidBigPicture()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 4
ccs 2
cts 2
cp 1
rs 10
cc 1
eloc 2
nc 1
nop 1
crap 1
1
<?php
2
3
namespace NotificationChannels\OneSignal\Traits\Categories;
4
5
trait AttachmentHelpers
6
{
7
    /**
8
     * Set an Image only for iOS.
9
     *
10
     * @param string $imageUrl
11
     *
12
     * @return $this
13
     */
14 1
    public function setIosAttachment(string $imageUrl)
15
    {
16 1
        return $this->setParameter('ios_attachments', ['id1' => $imageUrl]);
0 ignored issues
show
Bug introduced by
It seems like setParameter() must be provided by classes using this trait. How about adding it as abstract method to this trait?

This check looks for methods that are used by a trait but not required by it.

To illustrate, let’s look at the following code example

trait Idable {
    public function equalIds(Idable $other) {
        return $this->getId() === $other->getId();
    }
}

The trait Idable provides a method equalsId that in turn relies on the method getId(). If this method does not exist on a class mixing in this trait, the method will fail.

Adding the getId() as an abstract method to the trait will make sure it is available.

Loading history...
17
    }
18
19
    /**
20
     * Set multiple Images only for iOS.
21
     *
22
     * @param array $images
23
     *
24
     * @return $this
25
     */
26
    public function setIosAttachments(array $images)
27
    {
28
        return $this->setParameter('ios_attachments', $images);
0 ignored issues
show
Bug introduced by
It seems like setParameter() must be provided by classes using this trait. How about adding it as abstract method to this trait?

This check looks for methods that are used by a trait but not required by it.

To illustrate, let’s look at the following code example

trait Idable {
    public function equalIds(Idable $other) {
        return $this->getId() === $other->getId();
    }
}

The trait Idable provides a method equalsId that in turn relies on the method getId(). If this method does not exist on a class mixing in this trait, the method will fail.

Adding the getId() as an abstract method to the trait will make sure it is available.

Loading history...
29
    }
30
31
    /**
32
     * Set the Big Picture Image only for Android.
33
     *
34
     * @param string $imageUrl
35
     *
36
     * @return $this
37
     */
38 1
    public function setAndroidBigPicture(string $imageUrl)
39
    {
40 1
        return $this->setParameter('big_picture', $imageUrl);
0 ignored issues
show
Bug introduced by
It seems like setParameter() must be provided by classes using this trait. How about adding it as abstract method to this trait?

This check looks for methods that are used by a trait but not required by it.

To illustrate, let’s look at the following code example

trait Idable {
    public function equalIds(Idable $other) {
        return $this->getId() === $other->getId();
    }
}

The trait Idable provides a method equalsId that in turn relies on the method getId(). If this method does not exist on a class mixing in this trait, the method will fail.

Adding the getId() as an abstract method to the trait will make sure it is available.

Loading history...
41
    }
42
43
    /**
44
     * Set the Big Picture Image only for FireOS (Amazon).
45
     *
46
     * @param string $imageUrl
47
     *
48
     * @return $this
49
     */
50 1
    public function setAmazonBigPicture(string $imageUrl)
51
    {
52 1
        return $this->setParameter('adm_big_picture', $imageUrl);
0 ignored issues
show
Bug introduced by
It seems like setParameter() must be provided by classes using this trait. How about adding it as abstract method to this trait?

This check looks for methods that are used by a trait but not required by it.

To illustrate, let’s look at the following code example

trait Idable {
    public function equalIds(Idable $other) {
        return $this->getId() === $other->getId();
    }
}

The trait Idable provides a method equalsId that in turn relies on the method getId(). If this method does not exist on a class mixing in this trait, the method will fail.

Adding the getId() as an abstract method to the trait will make sure it is available.

Loading history...
53
    }
54
55
    /**
56
     * Set the Big Picture Image only for Chrome.
57
     *
58
     * @param string $imageUrl
59
     *
60
     * @return $this
61
     */
62 1
    public function setChromeBigPicture(string $imageUrl)
63
    {
64 1
        return $this->setParameter('chrome_big_picture', $imageUrl);
0 ignored issues
show
Bug introduced by
It seems like setParameter() must be provided by classes using this trait. How about adding it as abstract method to this trait?

This check looks for methods that are used by a trait but not required by it.

To illustrate, let’s look at the following code example

trait Idable {
    public function equalIds(Idable $other) {
        return $this->getId() === $other->getId();
    }
}

The trait Idable provides a method equalsId that in turn relies on the method getId(). If this method does not exist on a class mixing in this trait, the method will fail.

Adding the getId() as an abstract method to the trait will make sure it is available.

Loading history...
65
    }
66
67
    /**
68
     * Set the additional Data for all Platforms.
69
     * @param array $data
70
     *
71
     * @return $this
72
     */
73
    public function setData(array $data)
74
    {
75
        return $this->setParameter('data', $data);
0 ignored issues
show
Bug introduced by
It seems like setParameter() must be provided by classes using this trait. How about adding it as abstract method to this trait?

This check looks for methods that are used by a trait but not required by it.

To illustrate, let’s look at the following code example

trait Idable {
    public function equalIds(Idable $other) {
        return $this->getId() === $other->getId();
    }
}

The trait Idable provides a method equalsId that in turn relies on the method getId(). If this method does not exist on a class mixing in this trait, the method will fail.

Adding the getId() as an abstract method to the trait will make sure it is available.

Loading history...
76
    }
77
78
    /**
79
     * Set the additional URL for all Platforms.
80
     * @param string $url
81
     *
82
     * @return $this
83
     */
84 6
    public function setUrl(string $url)
85
    {
86 6
        return $this->setParameter('url', $url);
0 ignored issues
show
Bug introduced by
It seems like setParameter() must be provided by classes using this trait. How about adding it as abstract method to this trait?

This check looks for methods that are used by a trait but not required by it.

To illustrate, let’s look at the following code example

trait Idable {
    public function equalIds(Idable $other) {
        return $this->getId() === $other->getId();
    }
}

The trait Idable provides a method equalsId that in turn relies on the method getId(). If this method does not exist on a class mixing in this trait, the method will fail.

Adding the getId() as an abstract method to the trait will make sure it is available.

Loading history...
87
    }
88
89
    /**
90
     * Set an image to all possible attachment variables.
91
     *
92
     * @param string $imageUrl
93
     *
94
     * @return $this
95
     */
96 1
    public function setImageAttachments(string $imageUrl)
97
    {
98 1
        return $this->setIosAttachment($imageUrl)
99 1
            ->setAndroidBigPicture($imageUrl)
100 1
            ->setAmazonBigPicture($imageUrl)
101 1
            ->setChromeBigPicture($imageUrl);
102
    }
103
}
104