Completed
Push — develop ( 9ca5e1...fd1e5f )
by Baptiste
02:49
created

RenameAgendaHandler::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

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