| Current Path : /home/rtorresani/www/vendor/magento/framework/Webapi/Rest/Request/ |
| Current File : //home/rtorresani/www/vendor/magento/framework/Webapi/Rest/Request/DeserializerInterface.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\Framework\Webapi\Rest\Request;
/**
* DeserializerInterface Interface
*
* @api
*/
interface DeserializerInterface
{
/**
* Parse request body into array of params.
*
* @param string $body Posted content from request
* @return array|null Return NULL if content is invalid
*/
public function deserialize($body);
}