Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
20 | public static function createImageFromPostValues($postValues, $filename, $fileNames) |
||
21 | { |
||
22 | $imageObject = new \stdClass(); |
||
23 | $imageObject->file = $filename; |
||
24 | $imageObject->type = $postValues['type']; |
||
25 | $imageObject->size = $postValues['size']; |
||
26 | $imageObject->set = $fileNames; |
||
27 | |||
28 | return new Image($imageObject); |
||
29 | } |
||
30 | } |