lithium\net\http\Message::_decode PHP Метод

_decode() защищенный Метод

Decode the body based on the content type
См. также: lithium\net\http\Message::type()
protected _decode ( string $body ) : mixed
$body string
Результат mixed
    protected function _decode($body)
    {
        $media = $this->_classes['media'];
        if ($media::type($this->_type)) {
            $decoded = $media::decode($this->_type, $body);
            $body = $decoded !== null ? $decoded : $body;
        }
        return $body;
    }