AbstractTimerSubscriber   A
last analyzed

Complexity

Total Complexity 3

Size/Duplication

Total Lines 23
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 100%

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 2
A getTimer() 0 4 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