Conditions | 3 |
Paths | 3 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
54 | protected static function applyProperties($entityInstance, $data) |
||
55 | { |
||
56 | foreach ($data as $property => $value) { |
||
57 | $funcName = 'set'.ucfirst($property); |
||
58 | if (method_exists($entityInstance, $funcName)) { |
||
59 | $entityInstance->$funcName($value); |
||
60 | } |
||
61 | } |
||
62 | |||
63 | return $entityInstance; |
||
64 | } |
||
65 | } |
||
66 |