EncoderInterface.php 217 B

1234567891011
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Service\Export\Encoder;
  4. interface EncoderInterface
  5. {
  6. public function support(string $format): bool;
  7. public function encode(string $html, array $options = []);
  8. }