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.

InvalidManipulation::formatValues()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 8

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 8
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 1
1
<?php
2
3
namespace Spatie\Image\Exceptions;
4
5
use Exception;
6
7
class InvalidManipulation extends Exception
8
{
9
    public static function invalidWidth(int $width)
10
    {
11
        return new self("Width should be a positive number. `{$width}` given.");
12
    }
13
14
    public static function invalidHeight(int $height)
15
    {
16
        return new self("Height should be a positive number. `{$height}` given.");
17
    }
18
19
    public static function invalidParameter(string $name, $invalidValue, array $validValues)
20
    {
21
        $validValues = self::formatValues($validValues);
22
23
        $name = ucfirst($name);
24
25
        return new self("{$name} should be one of {$validValues}. `{$invalidValue}` given.");
26
    }
27
28
    public static function valueNotInRange(string $name, $invalidValue, $minValue, $maxValue)
29
    {
30
        $name = ucfirst($name);
31
32
        return new self("{$name} should be a number in the range {$minValue} until {$maxValue}. `{$invalidValue}` given.");
33
    }
34
35
    protected static function formatValues(array $values): string
36
    {
37
        $quotedValues = array_map(function (string $value) {
38
            return "`{$value}`";
39
        }, $values);
40
41
        return implode(', ', $quotedValues);
42
    }
43
}
44