1234567891011121314151617181920212223242526 |
- <?php
- namespace Symfony\Component\Mime\Encoder;
- interface EncoderInterface
- {
-
- public function encodeString(string $string, ?string $charset = 'utf-8', int $firstLineOffset = 0, int $maxLineLength = 0): string;
- }
|