Completed
Push — master ( 00d376...cc54a0 )
by Veaceslav
01:15
created

EncodingsBuilder::addEncodings()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 8

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 4
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 8
ccs 4
cts 4
cp 1
rs 10
c 0
b 0
f 0
cc 2
nc 2
nop 1
crap 2
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Aweapi\Openapi\Builders;
6
7
use Aweapi\Openapi\Objects;
8
9
final class EncodingsBuilder implements Objects\EncodingsFactory
10
{
11
    private $encodings = [];
12
13 1
    public function addEncodings(iterable $encodings): self
14
    {
15 1
        foreach ($encodings as $key => $encoding) {
16 1
            $this->setEncoding($key, $encoding);
17
        }
18
19 1
        return $this;
20
    }
21
22 2
    public function createEncodings(): Objects\Encodings
23
    {
24 2
        return new Objects\Encodings(
25 2
            array_map(
26
                static function (Objects\EncodingFactory $factory): Objects\Encoding {
27 2
                    return $factory->createEncoding();
28 2
                },
29 2
                $this->getEncodings()
30
            )
31
        );
32
    }
33
34 2
    public function setEncoding(string $key, Objects\EncodingFactory $encoding): self
35
    {
36 2
        $this->encodings[$key] = $encoding;
37
38 2
        return $this;
39
    }
40
41 2
    private function getEncodings(): array
42
    {
43 2
        return $this->encodings;
44
    }
45
}
46