EditUser   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __invoke() 0 3 1
A __construct() 0 6 1
1
<?php
2
3
declare(strict_types=1);
4
5
/*
6
 * This file is part of the G.L.S.R. Apps package.
7
 *
8
 * (c) Dev-Int Création <[email protected]>.
9
 *
10
 * For the full copyright and license information, please view the LICENSE
11
 * file that was distributed with this source code.
12
 */
13
14
namespace User\Application\Handler;
15
16
use Core\Domain\Common\Command\CommandHandlerInterface;
17
use User\Application\Command\EditUser as EditUserCommand;
18
use User\Application\Factory\CreateUser as CreateUserFactory;
19
use User\Domain\Storage\SaveUser;
20
21
final class EditUser implements CommandHandlerInterface
22
{
23
    private SaveUser $saveUser;
24
    private CreateUserFactory $createUser;
25
26
    public function __construct(
27
        SaveUser $saveUser,
28
        CreateUserFactory $createUser
29
    ) {
30
        $this->saveUser = $saveUser;
31
        $this->createUser = $createUser;
32
    }
33
34
    public function __invoke(EditUserCommand $command): void
35
    {
36
        $this->saveUser->save($this->createUser->createUser($command));
37
    }
38
}
39