Completed
Push — Lonja/albertg ( 67863a...bda4e5 )
by Albert
07:39 queued 05:26
created

Product   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 0

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 2
lcom 1
cbo 0
dl 0
loc 14
ccs 5
cts 5
cp 1
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
A equals() 0 4 1
1
<?php
2
3
namespace Kata\Lonja\Domain\Model;
4
5
final class Product
6
{
7
    private $name;
8
9 1
    public function __construct(string $a_name)
10
    {
11 1
        $this->name = $a_name;
12 1
    }
13
14 4
    public function equals(self $a_product): bool
15
    {
16 4
        return $this->name === $a_product->name;
17
    }
18
}