| Conditions | 5 |
| Paths | 3 |
| Total Lines | 12 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 34 | public function reverseTransform($data) |
||
| 35 | { |
||
| 36 | if (!is_array($data) || !isset($data['file']) || !$data['file'] instanceof File) { |
||
| 37 | return null; |
||
| 38 | } |
||
| 39 | |||
| 40 | if ($data['file'] instanceof UploadableFile) { |
||
| 41 | return $data['file']->getWebPath(); |
||
| 42 | } |
||
| 43 | |||
| 44 | return $data['file']; |
||
| 45 | } |
||
| 46 | } |
||
| 47 |