Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
42 | 1 | public static function create(array $payload): self |
|
43 | { |
||
44 | 1 | $senderId = $payload['sender']['id']; |
|
45 | 1 | $recipientId = $payload['recipient']['id']; |
|
46 | 1 | $timestamp = $payload['timestamp']; |
|
47 | 1 | $reaction = Reaction::create($payload['reaction']); |
|
48 | |||
49 | 1 | return new static($senderId, $recipientId, $timestamp, $reaction); |
|
50 | } |
||
52 |