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