AbstractTimerSubscriber::getTimer()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 4
ccs 2
cts 2
cp 1
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
crap 1
1
<?php
2
3
/*
4
 * This file is part of the Ivory Http Adapter package.
5
 *
6
 * (c) Eric GELOEN <[email protected]>
7
 *
8
 * For the full copyright and license information, please read the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace Ivory\HttpAdapter\Event\Subscriber;
13
14
use Ivory\HttpAdapter\Event\Timer\Timer;
15
use Ivory\HttpAdapter\Event\Timer\TimerInterface;
16
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
17
18
/**
19
 * @author GeLo <[email protected]>
20
 */
21
abstract class AbstractTimerSubscriber implements EventSubscriberInterface
22
{
23
    /**
24
     * @var TimerInterface
25
     */
26
    private $timer;
27
28
    /**
29
     * @param TimerInterface|null $timer
30
     */
31 144
    public function __construct(TimerInterface $timer = null)
32
    {
33 144
        $this->timer = $timer ?: new Timer();
34 144
    }
35
36
    /**
37
     * @return TimerInterface
38
     */
39 108
    public function getTimer()
40
    {
41 108
        return $this->timer;
42
    }
43
}
44