PlatesConfiguration::apply()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 6

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 5
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 6
ccs 5
cts 5
cp 1
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 1
crap 1
1
<?php
2
3
namespace Equip\Configuration;
4
5
use Auryn\Injector;
6
use League\Plates\Engine;
7
8
class PlatesConfiguration implements ConfigurationInterface
9
{
10
    use EnvTrait;
11
12 1
    public function apply(Injector $injector)
13
    {
14 1
        $injector->define(Engine::class, [
15 1
            ':directory' => $this->env['PLATES_DIRECTORY'],
16 1
        ]);
17 1
    }
18
}
19