GetTrail   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 100%

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: davis
5
 * Date: 7/23/17
6
 * Time: 3:12 AM
7
 */
8
9
namespace DavisPeixoto\BlogCore\Service;
10
11
use DavisPeixoto\BlogCore\Repository\AbstractTrailRepository;
12
use Psr\Log\LoggerInterface;
13
14
/**
15
 * Class GetTrail
16
 * @package DavisPeixoto\BlogCore\Service
17
 */
18
class GetTrail extends AbstractGetService
19
{
20
    /**
21
     * GetTrail constructor.
22
     * @param AbstractTrailRepository $repository
23
     * @param string $uuid
24
     * @param LoggerInterface $logger
25
     */
26 3
    public function __construct(AbstractTrailRepository $repository, string $uuid, LoggerInterface $logger)
27
    {
28 3
        parent::__construct($repository, $uuid, $logger);
29 3
    }
30
}
31