| Conditions | 4 |
| Paths | 8 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | public function populate(array $data): void |
||
| 25 | { |
||
| 26 | if (isset($data[static::FIELD_STATUS])) { |
||
| 27 | $this->setStatus($data[static::FIELD_STATUS]); |
||
| 28 | } |
||
| 29 | if (isset($data[static::FIELD_MESSAGE])) { |
||
| 30 | $this->setMessage($data[static::FIELD_MESSAGE]); |
||
| 31 | } |
||
| 32 | if (isset($data[static::FIELD_NOTIFICATION])) { |
||
| 33 | $this->setNotification($data[static::FIELD_NOTIFICATION]); |
||
| 34 | } |
||
| 49 |