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 (#13)
by
unknown
05:50 queued 03:42
created

Rgb   A

Complexity

Total Complexity 9

Size/Duplication

Total Lines 67
Duplicated Lines 31.34 %

Coupling/Cohesion

Components 1
Dependencies 4

Importance

Changes 0
Metric Value
dl 21
loc 67
c 0
b 0
f 0
wmc 9
lcom 1
cbo 4
rs 10

9 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 10 10 1
A red() 0 4 1
A green() 0 4 1
A blue() 0 4 1
A fromString() 11 11 1
A toHex() 0 8 1
A toRgb() 0 4 1
A toRgba() 0 4 1
A __toString() 0 4 1

How to fix   Duplicated Code   

Duplicated Code

Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.

Common duplication problems, and corresponding solutions are:

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
        list($red, $green, $blue) = explode(',', $matches[1]);
29
30
        return new static($red, $green, $blue);
31
    }
32
33
    public function red(): int
34
    {
35
        return $this->red;
36
    }
37
38
    public function green(): int
39
    {
40
        return $this->green;
41
    }
42
43
    public function blue(): int
44
    {
45
        return $this->blue;
46
    }
47
48
    public function toHex(): Hex
49
    {
50
        return new Hex(
51
            Convert::rgbChannelToHexChannel($this->red),
52
            Convert::rgbChannelToHexChannel($this->green),
53
            Convert::rgbChannelToHexChannel($this->blue)
54
        );
55
    }
56
57
    public function toRgb(): Rgb
58
    {
59
        return new Rgb($this->red, $this->green, $this->blue);
60
    }
61
62
    public function toRgba(float $alpha = 1): Rgba
63
    {
64
        return new Rgba($this->red, $this->green, $this->blue, $alpha);
65
    }
66
67
    public function __toString(): string
68
    {
69
        return "rgb({$this->red},{$this->green},{$this->blue})";
70
    }
71
}
72