PersistableAwareTrait   A
last analyzed

Complexity

Total Complexity 3

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 3
eloc 6
c 1
b 0
f 0
dl 0
loc 16
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A setId() 0 3 1
A getId() 0 7 2
1
<?php
2
3
declare(strict_types=1);
4
5
namespace App\Model;
6
7
use Ramsey\Uuid\UuidInterface;
8
9
trait PersistableAwareTrait
10
{
11
    private $id;
12
13
    public function getId(): ?string
14
    {
15
        if ($this->id instanceof UuidInterface) {
16
            return (string) $this->id;
17
        }
18
19
        return $this->id;
20
    }
21
22
    public function setId(string $id): void
23
    {
24
        $this->id = $id;
25
    }
26
}
27