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