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

OrganizerEvent::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\Organizer\Events;
4
5
use Broadway\Serializer\SerializableInterface;
6
7
abstract class OrganizerEvent implements SerializableInterface
8
{
9
    /**
10
     * @var string
11
     */
12
    protected $organizerId;
13
14
    public function __construct(string $organizerId)
15
    {
16
        $this->organizerId = $organizerId;
17
    }
18
19
    public function getOrganizerId(): string
20
    {
21
        return $this->organizerId;
22
    }
23
24
    public function serialize(): array
25
    {
26
        return [
27
          'organizer_id' => $this->organizerId,
28
        ];
29
    }
30
}
31