Completed
Push — lonja/eduard ( 66fb34 )
by Albert
05:35
created

KmCost   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 29
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 3
lcom 0
cbo 0
dl 0
loc 29
ccs 0
cts 13
cp 0
rs 10
c 0
b 0
f 0

3 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
A getCostId() 0 4 1
A getCost() 0 4 1
1
<?php
2
3
namespace Kata;
4
5
class KmCost
6
{
7
    private $cost_id;
8
    private $cost;
9
10
    public function __construct(int $cost_id, float $cost)
11
    {
12
        $this->cost_id = $cost_id;
13
        $this->cost    = $cost;
14
    }
15
16
    /**
17
     * @return int
18
     */
19
    public function getCostId(): int
20
    {
21
        return $this->cost_id;
22
    }
23
24
    /**
25
     * @return float
26
     */
27
    public function getCost(): float
28
    {
29
        return $this->cost;
30
    }
31
32
33
}
34