Passed
Push — develop ( 3b27a1...7bbf61 )
by Baptiste
02:37
created

Disable2FAHandler   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
dl 0
loc 15
ccs 7
cts 7
cp 1
rs 10
c 0
b 0
f 0
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __invoke() 0 6 1
A __construct() 0 3 1
1
<?php
2
declare(strict_types = 1);
3
4
namespace PersonalGalaxy\Identity\Handler\Identity;
5
6
use PersonalGalaxy\Identity\{
7
    Command\Identity\Disable2FA,
8
    Repository\IdentityRepository,
9
};
10
11
final class Disable2FAHandler
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(Disable2FA $wished): void
21
    {
22
        $this
23 1
            ->repository
24 1
            ->get($wished->email())
25 1
            ->disableTwoFactorAuthentication();
26 1
    }
27
}
28