Service   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 1
eloc 3
dl 0
loc 13
c 0
b 0
f 0
ccs 2
cts 2
cp 1
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
1
<?php
2
/**
3
 *
4
 */
5
6
namespace Mvc5\Plugins;
7
8
use Mvc5\Service\Plugin;
9
use Mvc5\Service\Service as _Service;
10
11
trait Service
12
{
13
    /**
14
     *
15
     */
16
    use Plugin;
17
18
    /**
19
     * @param _Service $service
20
     */
21 38
    function __construct(_Service $service)
22
    {
23 38
        $this->service = $service;
24 38
    }
25
}
26