| 1 | <?php |
||
| 7 | class StringToImageTransformer implements DataTransformerInterface |
||
| 8 | { |
||
| 9 | protected $imageService; |
||
| 10 | |||
| 11 | public function __construct(ImageService $imageService) |
||
| 15 | |||
| 16 | // En théorie n'est jamais utilisé |
||
| 17 | public function transform($image) { return; } |
||
| 18 | |||
| 19 | public function reverseTransform($base64orUrl) |
||
| 27 | } |
||
| 28 |