Test Failed
Push — master ( 440e74...ed24cc )
by Jelmer
01:53
created

ConfigTrait::config()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 7
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 1
CRAP Score 2

Importance

Changes 0
Metric Value
cc 2
eloc 3
nc 2
nop 1
dl 0
loc 7
ccs 1
cts 1
cp 1
crap 2
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 3
    public function __construct(array | ArrayAccess $config)
13
    {
14 3
        $this->config = $config;
15
    }
16
17
    public function config(string $valueName): mixed
18 3
    {
19
        if (!isset($this->config[$valueName])) {
20
            throw new OutOfBoundsException('No such config value: ' . $valueName);
21
        }
22
23
        return $this->config[$valueName];
24
    }
25
}
26