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

ConfigTrait   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Test Coverage

Coverage 83.33%

Importance

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

2 Methods

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