| 1 | <?php |
||
| 12 | class FileService |
||
| 13 | { |
||
| 14 | |||
| 15 | /** @var ImageRepository */ |
||
| 16 | private $imageRepository; |
||
| 17 | |||
| 18 | /** @var string */ |
||
| 19 | private $filePath; |
||
| 20 | |||
| 21 | public function __construct(string $applicationRootPath, ImageRepository $imageRepository) |
||
| 26 | |||
| 27 | public function createBase64Image(string $fileName, string $fileContents, $entity) |
||
| 42 | } |
||
| 43 |