Completed
Branch master (a1753a)
by Mikhail
01:53
created

FixHydrationDataCollector::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 1 Features 1
Metric Value
c 1
b 1
f 1
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 1
1
<?php
2
/**
3
 * @author Dolgov_M <[email protected]>
4
 * @date   11.11.2016 15:26
5
 */
6
7
namespace SilexDoctrineHydrationProfile\Fix;
8
9
use Debesha\DoctrineProfileExtraBundle\DataCollector\HydrationDataCollector;
10
use Debesha\DoctrineProfileExtraBundle\ORM\HydrationLogger;
11
12
13
class FixHydrationDataCollector extends HydrationDataCollector
14
{
15
16
    /**
17
     * @var HydrationLogger
18
     */
19
    protected $hydrationLogger = array ();
20
21
    public function __construct(HydrationLogger $logger)
22
    {
23
        $this->hydrationLogger = $logger;
24
    }
25
26
}