| Conditions | 3 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 12 |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 95 | public static function fromArray(array $info) |
||
| 96 | { |
||
| 97 | if (!empty($info['seller_id']) && !empty($info['seller'])) { |
||
| 98 | $seller = new static($info['seller_id'], $info['seller']); |
||
| 99 | } else { |
||
| 100 | $seller = null; |
||
| 101 | } |
||
| 102 | |||
| 103 | return new static($info['id'], $info['login'], $seller, $info['state'] ?? null); |
||
| 104 | } |
||
| 111 |