ActorEvent   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 getActorId() 0 4 1
A serialize() 0 6 1
1
<?php
2
3
namespace CultuurNet\UDB3\Actor;
4
5
use Broadway\Serializer\SerializableInterface;
6
7
abstract class ActorEvent implements SerializableInterface
8
{
9
    /**
10
     * @var string
11
     */
12
    protected $actorId;
13
14
    public function __construct($actorId)
15
    {
16
        $this->actorId = $actorId;
17
    }
18
19
    public function getActorId(): string
20
    {
21
        return $this->actorId;
22
    }
23
24
    public function serialize(): array
25
    {
26
        return [
27
            'actor_id' => $this->actorId,
28
        ];
29
    }
30
}
31