Passed
Push — master ( c86ace...13d1a4 )
by Akmal
01:06
created

Foo::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 0
nc 1
nop 2
dl 0
loc 2
rs 10
c 0
b 0
f 0
1
<?php declare(strict_types=1);
2
3
namespace OpenEngine\Mika\Core\Components\Di\Tests\Dummy;
4
5
class Foo implements FooInterface
6
{
7
    public function __construct(BarInterface $bar, Baz $baz)
8
    {
9
    }
10
11
    public function bar(BarInterface $bar, string $login): string
12
    {
13
        return 'Hello!';
14
    }
15
}
16