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

ConfigTrait   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Test Coverage

Coverage 75%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 6
dl 0
loc 16
ccs 3
cts 4
cp 0.75
rs 10
c 1
b 0
f 0
wmc 3

2 Methods

Rating   Name   Duplication   Size   Complexity  
A config() 0 7 2
A __construct() 0 3 1
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