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

Foo   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 9
rs 10
c 0
b 0
f 0
wmc 2
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