Conditions | 3 |
Paths | 4 |
Total Lines | 6 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php // Copyright ⓒ 2018 Magneds IP B.V. - All Rights Reserved |
||
47 | public static function buildFromArray($data) |
||
48 | { |
||
49 | $inserted = array_key_exists('inserted', $data) ? $data['inserted'] : 0; |
||
50 | $updated = array_key_exists('updated', $data) ? $data['updated'] : 0; |
||
51 | |||
52 | return new self($inserted, $updated); |
||
53 | } |
||
55 |