123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
-
-
-
-
-
- interface Swift_Mime_ContentEncoder extends Swift_Encoder
- {
-
-
-
- public function encodeByteStream(
- Swift_OutputByteStream $os, Swift_InputByteStream $is, $firstLineOffset = 0,
- $maxLineLength = 0);
-
-
-
- public function getName();
-
- }
|