SwitchHydrator::validate()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 1
dl 0
loc 3
ccs 2
cts 2
cp 1
crap 1
rs 10
c 0
b 0
f 0
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