PlaceEvent   A
last analyzed

Complexity

Total Complexity 3

Size/Duplication

Total Lines 24
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 0

Importance

Changes 0
Metric Value
wmc 3
lcom 1
cbo 0
dl 0
loc 24
rs 10
c 0
b 0
f 0

3 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
A getPlaceId() 0 4 1
A serialize() 0 6 1
1
<?php
2
3
namespace CultuurNet\UDB3\Place;
4
5
use Broadway\Serializer\SerializableInterface;
6
7
abstract class PlaceEvent implements SerializableInterface
8
{
9
    /**
10
     * @var string
11
     */
12
    protected $placeId;
13
14
    public function __construct(string $placeId)
15
    {
16
        $this->placeId = $placeId;
17
    }
18
19
    public function getPlaceId(): string
20
    {
21
        return $this->placeId;
22
    }
23
24
    public function serialize(): array
25
    {
26
        return array(
27
            'place_id' => $this->placeId,
28
        );
29
    }
30
}
31