CancelEventHandler::__invoke()   A
last analyzed

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
dl 0
loc 5
ccs 4
cts 4
cp 1
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 3
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\CancelEvent,
8
    Repository\EventRepository,
9
};
10
11
final class CancelEventHandler
12
{
13
    private $repository;
14
15 2
    public function __construct(EventRepository $repository)
16
    {
17 2
        $this->repository = $repository;
18 2
    }
19
20 2
    public function __invoke(CancelEvent $wished): void
21
    {
22 2
        $event = $this->repository->get($wished->identity());
23 2
        $event->cancel();
24 2
        $this->repository->remove($event->identity());
25 2
    }
26
}
27