123456789101112131415161718192021222324252627282930 |
- <?php
-
-
-
- namespace Symfony\Component\Mime\Encoder;
-
-
- interface ContentEncoderInterface extends EncoderInterface
- {
-
-
- public function encodeByteStream($stream, int $maxLineLength = 0): iterable;
-
-
-
- public function getName(): string;
- }
|