EditUser::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 2
c 1
b 0
f 0
dl 0
loc 6
rs 10
cc 1
nc 1
nop 2
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