RemoveSubscriptionHandler   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
A __invoke() 0 5 1
1
<?php
2
declare(strict_types = 1);
3
4
namespace PersonalGalaxy\RSS\Handler;
5
6
use PersonalGalaxy\RSS\{
7
    Command\RemoveSubscription,
8
    Repository\SubscriptionRepository,
9
};
10
11
final class RemoveSubscriptionHandler
12
{
13
    private $repository;
14
15 1
    public function __construct(SubscriptionRepository $repository)
16
    {
17 1
        $this->repository = $repository;
18 1
    }
19
20 1
    public function __invoke(RemoveSubscription $wished): void
21
    {
22 1
        $subscription = $this->repository->get($wished->identity());
23 1
        $subscription->remove();
24 1
        $this->repository->remove($wished->identity());
25 1
    }
26
}
27