Completed
Push — master ( d252f0...d75c62 )
by Jonas
22s queued 11s
created

PlaceEvent::deserialize()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 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