Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
52 | 1 | public static function create(array $payload) |
|
53 | { |
||
54 | 1 | $senderId = $payload['sender']['id']; |
|
55 | 1 | $recipientId = $payload['recipient']['id']; |
|
56 | 1 | $timestamp = $payload['timestamp']; |
|
57 | 1 | $gamePlay = GamePlay::create($payload['game_play']); |
|
58 | |||
59 | 1 | return new static($senderId, $recipientId, $timestamp, $gamePlay); |
|
60 | } |
||
61 | } |
||
62 |