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 ( d90bd1...097b8b )
by Sebastian
06:19 queued 04:14
created

Rgb::toRgb()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
c 0
b 0
f 0
rs 10
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
3
namespace Spatie\Color;
4
5
class Rgb implements Color
6
{
7
    /** @var int */
8
    protected $red, $green, $blue;
0 ignored issues
show
Coding Style introduced by
It is generally advisable to only define one property per statement.

Only declaring a single property per statement allows you to later on add doc comments more easily.

It is also recommended by PSR2, so it is a common style that many people expect.

Loading history...
9
10 View Code Duplication
    public function __construct(int $red, int $green, int $blue)
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
11
    {
12
        Validate::rgbChannelValue($red, 'red');
13
        Validate::rgbChannelValue($green, 'green');
14
        Validate::rgbChannelValue($blue, 'blue');
15
16
        $this->red = $red;
17
        $this->green = $green;
18
        $this->blue = $blue;
19
    }
20
21 View Code Duplication
    public static function fromString(string $string)
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
22
    {
23
        Validate::rgbColorString($string);
24
25
        $matches = null;
26
        preg_match('/rgb\( *(\d{1,3} *, *\d{1,3} *, *\d{1,3}) *\)/i', $string, $matches);
27
28
        $channels = explode(',', $matches[1]);
29
        list($red, $green, $blue) = array_map('trim', $channels);
30
31
        return new static($red, $green, $blue);
32
    }
33
34
    public function red(): int
35
    {
36
        return $this->red;
37
    }
38
39
    public function green(): int
40
    {
41
        return $this->green;
42
    }
43
44
    public function blue(): int
45
    {
46
        return $this->blue;
47
    }
48
49
    public function toHex(): Hex
50
    {
51
        return new Hex(
52
            Convert::rgbChannelToHexChannel($this->red),
53
            Convert::rgbChannelToHexChannel($this->green),
54
            Convert::rgbChannelToHexChannel($this->blue)
55
        );
56
    }
57
58
    public function toRgb(): Rgb
59
    {
60
        return new self($this->red, $this->green, $this->blue);
61
    }
62
63
    public function toRgba(float $alpha = 1): Rgba
64
    {
65
        return new Rgba($this->red, $this->green, $this->blue, $alpha);
66
    }
67
68
    public function __toString(): string
69
    {
70
        return "rgb({$this->red},{$this->green},{$this->blue})";
71
    }
72
}
73