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

SeaFoodCityPrice::getPricePerKg()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

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