| 12345678910111213141516171819202122 |
- <?php
- namespace ThurData\Servers\KerioEmail\Core\Api\AbstractApi;
- use ThurData\Servers\KerioEmail\Core\Interfaces\CurlParser;
- /**
- * Description of Parser
- *
- * @author Rafał Ossowski <rafal.os@thurdata.com>
- */
- class Parser implements CurlParser
- {
- public function rebuild($head, $size)
- {
- return [
- substr($head, 0, $size),
- substr($head, $size)
- ];
- }
- }
|