| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 30 | public static function create(array $data): self |
||
| 31 | { |
||
| 32 | $model = new self(); |
||
| 33 | $model->value = $data['value'] ?? null; |
||
| 34 | $model->reason = $data['reason'] ?? null; |
||
| 35 | $model->type = $data['type'] ?? null; |
||
| 36 | $model->createdAt = isset($data['createdAt']) ? new DateTimeImmutable($data['createdAt']) : null; |
||
| 37 | |||
| 38 | return $model; |
||
| 39 | } |
||
| 40 | |||
| 61 |