| Conditions | 3 |
| Paths | 4 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 3 |
| Changes | 0 | ||
| 1 | <?php |
||
| 27 | 2 | public static function create(array $data): self |
|
| 28 | { |
||
| 29 | 2 | $model = new self(); |
|
| 30 | |||
| 31 | 2 | $model->address = $data['address'] ?? null; |
|
| 32 | 2 | $model->createdAt = isset($data['created_at']) ? new \DateTimeImmutable($data['created_at']) : null; |
|
| 33 | |||
| 34 | 2 | if (isset($data['tags'])) { |
|
| 35 | 1 | $model->tags = $data['tags']; |
|
| 36 | } |
||
| 37 | |||
| 38 | 2 | return $model; |
|
| 39 | } |
||
| 40 | |||
| 56 |