LabelsImported   A
last analyzed

Complexity

Total Complexity 7

Size/Duplication

Total Lines 57
Duplicated Lines 100 %

Coupling/Cohesion

Components 1
Dependencies 4

Importance

Changes 0
Metric Value
wmc 7
lcom 1
cbo 4
dl 57
loc 57
rs 10
c 0
b 0
f 0

5 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 7 7 1
A getItemId() 4 4 1
A getLabels() 4 4 1
A deserialize() 15 15 2
A serialize() 15 15 2

How to fix   Duplicated Code   

Duplicated Code

Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.

Common duplication problems, and corresponding solutions are:

1
<?php
2
3
namespace CultuurNet\UDB3\Organizer\Events;
4
5
use CultuurNet\UDB3\LabelsImportedEventInterface;
6
use CultuurNet\UDB3\Model\ValueObject\Taxonomy\Label\Label;
7
use CultuurNet\UDB3\Model\ValueObject\Taxonomy\Label\LabelName;
8
use CultuurNet\UDB3\Model\ValueObject\Taxonomy\Label\Labels;
9
10 View Code Duplication
final class LabelsImported extends OrganizerEvent implements LabelsImportedEventInterface
0 ignored issues
show
Duplication introduced by
This class seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
11
{
12
    /**
13
     * @var Labels
14
     */
15
    private $labels;
16
17
    public function __construct(
18
        string $organizerId,
19
        Labels $labels
20
    ) {
21
        parent::__construct($organizerId);
22
        $this->labels = $labels;
23
    }
24
25
    public function getItemId(): string
26
    {
27
        return $this->getOrganizerId();
28
    }
29
30
    public function getLabels(): Labels
31
    {
32
        return $this->labels;
33
    }
34
35
    public static function deserialize(array $data): LabelsImported
36
    {
37
        $labels = new Labels();
38
        foreach ($data['labels'] as $label) {
39
            $labels = $labels->with(new Label(
40
                new LabelName($label['label']),
41
                $label['visibility']
42
            ));
43
        }
44
45
        return new self(
46
            $data['organizer_id'],
47
            $labels
48
        );
49
    }
50
51
    public function serialize(): array
52
    {
53
        $labels = [];
54
        foreach ($this->getLabels() as $label) {
55
            /** @var Label $label */
56
            $labels[] = [
57
                'label' => $label->getName()->toString(),
58
                'visibility' => $label->isVisible(),
59
            ];
60
        }
61
62
        return parent::serialize() + [
63
            'labels' => $labels,
64
        ];
65
    }
66
}
67