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

EventEvent::deserialize()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 4
Ratio 100 %

Importance

Changes 0
Metric Value
dl 4
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 1
1
<?php
2
3
namespace CultuurNet\UDB3\Event;
4
5
use Broadway\Serializer\SerializableInterface;
6
7
abstract class EventEvent implements SerializableInterface
8
{
9
    /**
10
     * @var string
11
     */
12
    protected $eventId;
13
14
    public function __construct(string $eventId)
15
    {
16
        $this->eventId = $eventId;
17
    }
18
19
    public function getEventId(): string
20
    {
21
        return $this->eventId;
22
    }
23
24
    public function serialize(): array
25
    {
26
        return [
27
            'event_id' => $this->eventId,
28
        ];
29
    }
30
}
31