EntryHydrator   A
last analyzed

Complexity

Total Complexity 4

Size/Duplication

Total Lines 23
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
eloc 6
dl 0
loc 23
ccs 9
cts 9
cp 1
rs 10
c 0
b 0
f 0
wmc 4

4 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
A supports() 0 3 1
A hydrate() 0 3 1
A validate() 0 3 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace PanicLabCore\Services\Hydrators;
6
7
use PanicLabCore\Services\Validators\ValidatorInterface;
8
use PanicLabCore\Structs\EntryTile;
9
use PanicLabCore\Structs\Tile;
10
11
class EntryHydrator implements HydratorInterface
12
{
13
    /** @var ValidatorInterface */
14
    private $entryValidator;
15
16 16
    public function __construct(ValidatorInterface $entryValidator)
17
    {
18 16
        $this->entryValidator = $entryValidator;
19 16
    }
20
21 14
    public function supports(string $type): bool
22
    {
23 14
        return $type === 'entry';
24
    }
25
26 11
    public function hydrate(array $tile): Tile
27
    {
28 11
        return new EntryTile($tile['additional']['color']);
29
    }
30
31 11
    public function validate(array $tile): void
32
    {
33 11
        $this->entryValidator->validate($tile);
34 11
    }
35
}
36