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

FixedCost::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 6
ccs 0
cts 6
cp 0
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 4
nc 1
nop 3
crap 2
1
<?php
2
3
namespace Kata;
4
5
class FixedCost
6
{
7
    private $cost_id;
8
    private $name;
9
    private $cost;
10
11
    public function __construct(int $cost_id, string $name, float $cost)
12
    {
13
        $this->cost_id = $cost_id;
14
        $this->name    = $name;
15
        $this->cost    = $cost;
16
    }
17
18
    /**
19
     * @return mixed
20
     */
21
    public function getCostId(): int
22
    {
23
        return $this->cost_id;
24
    }
25
26
    /**
27
     * @return mixed
28
     */
29
    public function getName(): string
30
    {
31
        return $this->name;
32
    }
33
34
    /**
35
     * @return mixed
36
     */
37
    public function getCost(): float
38
    {
39
        return $this->cost;
40
    }
41
42
43
}
44