Completed
Push — develop ( 6b618f...2007a6 )
by Alec
04:06
created

BenchmarkFields::getTotalIterations()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 3
ccs 2
cts 2
cp 1
crap 1
rs 10
c 0
b 0
f 0
1
<?php
2
/**
3
 * User: alec
4
 * Date: 01.12.18
5
 * Time: 20:33
6
 */
7
8
namespace AlecRabbit\Tools\Traits;
9
10
use AlecRabbit\Tools\Profiler;
11
12
trait BenchmarkFields
13
{
14
    /** @var array */
15
    protected $functions = [];
16
    /** @var Profiler */
17
    protected $profiler;
18
    /** @var int */
19
    protected $totalIterations = 0;
20
    /** @var bool */
21
    protected $withResults = false;
22
23
    /**
24
     * @return array
25
     */
26 2
    public function getFunctions(): array
27
    {
28 2
        return $this->functions;
29
    }
30
31
    /**
32
     * @return Profiler
33
     */
34 2
    public function getProfiler(): Profiler
35
    {
36 2
        return $this->profiler;
37
    }
38
39
    /**
40
     * @return int
41
     */
42 2
    public function getTotalIterations(): int
43
    {
44 2
        return $this->totalIterations;
45
    }
46
47
    /**
48
     * @return bool
49
     */
50 2
    public function isWithResults(): bool
51
    {
52 2
        return $this->withResults;
53
    }
54
}
55