Completed
Push — master ( b88e5a...b83135 )
by Siad
15:06
created

StatsTimer   A

Complexity

Total Complexity 6

Size/Duplication

Total Lines 40
Duplicated Lines 0 %

Test Coverage

Coverage 63.16%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 14
c 1
b 0
f 0
dl 0
loc 40
ccs 12
cts 19
cp 0.6316
rs 10
wmc 6

6 Methods

Rating   Name   Duplication   Size   Complexity  
A getTime() 0 3 1
A start() 0 5 1
A finish() 0 3 1
A getName() 0 3 1
A __construct() 0 5 1
A getSeries() 0 3 1
1
<?php
2
/**
3
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
4
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
5
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
6
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
7
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
8
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
9
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
10
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
11
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
12
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
13
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
14
 *
15
 * This software consists of voluntary contributions made by many individuals
16
 * and is licensed under the LGPL. For more information please see
17
 * <http://phing.info>.
18
 */
19
20
/**
21
 * @author    Siad Ardroumli <[email protected]>
22
 * @package   phing.listener.statistics
23
 */
24
class StatsTimer
25
{
26
    protected $name;
27
28
    protected $series;
29
30
    protected $clock;
31
32 1
    public function __construct($name, Clock $clock)
33
    {
34 1
        $this->name = $name;
35 1
        $this->clock = $clock;
36 1
        $this->series = new Series();
37 1
    }
38
39
    public function start()
40
    {
41
        $duration = new Duration();
42
        $duration->setStartTime($this->clock->getCurrentTime());
43
        $this->series->add($duration);
44
    }
45
46 1
    public function finish()
47
    {
48 1
        $this->series->setFinishTime($this->clock->getCurrentTime());
49 1
    }
50
51 1
    public function getName()
52
    {
53 1
        return $this->name;
54
    }
55
56
    public function getTime()
57
    {
58
        return $this->series->getTotalTime();
59
    }
60
61 1
    public function getSeries()
62
    {
63 1
        return $this->series;
64
    }
65
}
66