CurlParser.php 314 B

1234567891011121314151617
  1. <?php
  2. namespace ModulesGarden\Servers\ZimbraEmail\Core\Interfaces;
  3. /**
  4. *
  5. * @author Rafał Ossowski <rafal.os@modulesgarden.com>
  6. */
  7. interface CurlParser
  8. {
  9. /**
  10. * @param string $head
  11. * @param int $size
  12. * @return array array($header, $body)
  13. */
  14. public function rebuild($head, $size);
  15. }