Passed
Pull Request — master (#49)
by Michael
01:46
created

Bar   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 10
rs 10
c 0
b 0
f 0
wmc 1
1
<?php
2
3
use Another\Foo;
4
use Foo as GlobalFoo;
5
6
class Bar
7
{
8
    /**
9
     * Do a thing
10
     *
11
     * @param Foo $foo
12
     */
13
    public function doThing(Foo $foo)
14
    {
15
        $foo->bar();
16
    }
17
}
18