SvgConverterService.php 373 B

123456789101112131415161718192021
  1. <?php
  2. namespace App\Services;
  3. class SvgConverterService
  4. {
  5. public function rasterToSvg(string $imagePath, array $opts = []): string
  6. {
  7. return '';
  8. }
  9. public function renderLatex(string $latex, array $opts = []): string
  10. {
  11. return '';
  12. }
  13. public function extractSvgAssets(string $questionText): array
  14. {
  15. return [];
  16. }
  17. }