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

AbstractFactory::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 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
}