Hydrator::__construct()   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\Structs\Tile;
8
9
final class Hydrator
10
{
11
    /** @var HydrationCollectorInterface */
12
    private $hydrationCollector;
13
14 12
    public function __construct(HydrationCollectorInterface $hydrationCollector)
15
    {
16 12
        $this->hydrationCollector = $hydrationCollector;
17 12
    }
18
19
    /**
20
     * @return Tile[]
21
     */
22 12
    public function hydrate(array $tiles): array
23
    {
24 12
        $tileStructs = [];
25 12
        foreach ($tiles as $tile) {
26 12
            $tileStructs[] = $this->hydrationCollector->hydrate($tile);
27
        }
28
29 12
        return $tileStructs;
30
    }
31
}
32