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 (#44)
by Tom
01:22
created

EnumCollectionCast   A

Complexity

Total Complexity 5

Size/Duplication

Total Lines 53
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 5
lcom 0
cbo 1
dl 0
loc 53
rs 10
c 0
b 0
f 0

3 Methods

Rating   Name   Duplication   Size   Complexity  
A get() 0 10 2
A set() 0 8 2
A asEnums() 0 4 1
1
<?php
2
3
namespace Spatie\Enum\Laravel\Casts;
4
5
use Illuminate\Support\Arr;
6
7
class EnumCollectionCast extends EnumCast
8
{
9
    /**
10
     * @param \Illuminate\Database\Eloquent\Model $model
11
     * @param string $key
12
     * @param int[]|string[]|null|mixed $value
13
     * @param array $attributes
14
     *
15
     * @return \Spatie\Enum\Enum[]|null
16
     *
17
     * @throws \BadMethodCallException
18
     * @throws \Spatie\Enum\Laravel\Exceptions\NotNullableEnumField
19
     */
20
    public function get($model, string $key, $value, array $attributes)
21
    {
22
        if (is_null($value)) {
23
            return $this->handleNullValue($model, $key);
24
        }
25
26
        return $this->asEnums(
27
            Arr::wrap(json_decode($value, true))
28
        );
29
    }
30
31
    /**
32
     * @param \Illuminate\Database\Eloquent\Model $model
33
     * @param string $key
34
     * @param int[]|string[]|\Spatie\Enum\Enum[]|null|mixed $value
35
     * @param array $attributes
36
     *
37
     * @return string|null
38
     */
39
    public function set($model, string $key, $value, array $attributes)
40
    {
41
        if (is_null($value)) {
42
            return $this->handleNullValue($model, $key);
43
        }
44
45
        return json_encode($this->asEnums(Arr::wrap($value)));
46
    }
47
48
    /**
49
     * @param int[]|string[]|\Spatie\Enum\Enum[] $values
50
     *
51
     * @return \Spatie\Enum\Enum[]
52
     *
53
     * @throws \BadMethodCallException
54
     */
55
    protected function asEnums(array $values): array
56
    {
57
        return array_map([$this, 'asEnum'], $values);
58
    }
59
}
60