Completed
Branch master (a8d92e)
by Roman
04:17 queued 01:45
created

TestService::testCall()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 3
rs 10
cc 1
eloc 2
nc 1
nop 1
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: mindkicker
5
 * Date: 16.02.16
6
 * Time: 12:41
7
 */
8
9
namespace Lebran;
10
11
use Lebran\Container\InjectableInterface;
12
use Lebran\Container\InjectableTrait;
13
14
class TestService implements InjectableInterface
15
{
16
    use InjectableTrait;
17
18
    public function testCall(TestServiceProvider $param1){
19
        return $param1;
20
    }
21
}