Completed
Push — develop ( 5a8a22...72aeee )
by Baptiste
02:16
created

ContainerBuilder   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 19
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 2
dl 0
loc 19
ccs 6
cts 6
cp 1
rs 10
c 0
b 0
f 0
1
<?php
2
declare(strict_types = 1);
3
4
namespace Innmind\Compose;
5
6
use Innmind\Url\PathInterface;
7
use Innmind\Immutable\MapInterface;
8
use Psr\Container\ContainerInterface;
9
10
interface ContainerBuilder
11
{
12
    /**
13
     * @param MapInterface<string, mixed> $arguments
14
     */
15
    public function __invoke(
16
        PathInterface $definition,
17
        MapInterface $arguments
18
    ): ContainerInterface;
19
}
20