Passed
Push — master ( 24b216...683720 )
by Jelmer
11:28
created

ConfigTrait::config()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 7
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 2.0625

Importance

Changes 0
Metric Value
cc 2
eloc 3
nc 2
nop 1
dl 0
loc 7
ccs 3
cts 4
cp 0.75
crap 2.0625
rs 10
c 0
b 0
f 0
1
<?php declare(strict_types=1);
2
3
namespace jschreuder\MiddleDi;
4
5
use ArrayAccess;
6
use OutOfBoundsException;
7
8
trait ConfigTrait
9
{
10
    private array | ArrayAccess $config;
11
12 6
    public function __construct(array | ArrayAccess $config)
13
    {
14 6
        $this->config = $config;
15
    }
16
17 3
    public function config(string $valueName): mixed
18
    {
19 3
        if (!isset($this->config[$valueName])) {
20
            throw new OutOfBoundsException('No such config value: ' . $valueName);
21
        }
22
23 3
        return $this->config[$valueName];
24
    }
25
}
26