Test Setup Failed
Push — master ( 80a7cc...26b8e4 )
by Alexey
02:49
created

AbstractFactory   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
3
namespace Skobkin\Bundle\PointToolsBundle\Service\Factory;
4
5
use Psr\Log\LoggerInterface;
6
7
class AbstractFactory
8
{
9
    /**
10
     * @var LoggerInterface
11
     */
12
    protected $logger;
13
14
15
    public function __construct(LoggerInterface $logger)
16
    {
17
        $this->logger = $logger;
18
    }
19
}