Completed
Push — develop ( ccfc23...3b27a1 )
by Baptiste
02:20
created

DeleteIdentityHandler::__invoke()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 4
CRAP Score 1

Importance

Changes 0
Metric Value
cc 1
eloc 3
nc 1
nop 1
dl 0
loc 5
ccs 4
cts 4
cp 1
crap 1
rs 9.4285
c 0
b 0
f 0
1
<?php
2
declare(strict_types = 1);
3
4
namespace PersonalGalaxy\Identity\Handler;
5
6
use PersonalGalaxy\Identity\{
7
    Command\DeleteIdentity,
8
    Repository\IdentityRepository,
9
};
10
11
final class DeleteIdentityHandler
12
{
13
    private $repository;
14
15 1
    public function __construct(IdentityRepository $repository)
16
    {
17 1
        $this->repository = $repository;
18 1
    }
19
20 1
    public function __invoke(DeleteIdentity $wished): void
21
    {
22 1
        $identity = $this->repository->get($wished->email());
23 1
        $identity->delete();
24 1
        $this->repository->remove($identity->email());
25 1
    }
26
}
27