SwitchHydrator   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 hydrate() 0 3 1
A __construct() 0 3 1
A validate() 0 3 1
A supports() 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\SwitchTile;
9
use PanicLabCore\Structs\Tile;
10
11
class SwitchHydrator implements HydratorInterface
12
{
13
    /** @var ValidatorInterface */
14
    private $switchValidator;
15
16 22
    public function __construct(ValidatorInterface $switchValidator)
17
    {
18 22
        $this->switchValidator = $switchValidator;
19 22
    }
20
21 18
    public function supports(string $type): bool
22
    {
23 18
        return $type === 'switch';
24
    }
25
26 15
    public function hydrate(array $tile): Tile
27
    {
28 15
        return new SwitchTile($tile['additional']['type']);
29
    }
30
31 16
    public function validate(array $tile): void
32
    {
33 16
        $this->switchValidator->validate($tile);
34 15
    }
35
}
36