You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
В строке 208 метода \MoySklad\Components\Http\MoySkladHttpClient::makeRequest вызывается исключение throw new ResponseParseException($res);, в котором $res является объектом класса \GuzzleHttp\Psr7\Response.
Далее в конструкторе класса \MoySklad\Exceptions\ResponseParseException есть код "Response decode error: " . $message, в котором $message является объектом класса \GuzzleHttp\Psr7\Response.
Класс \GuzzleHttp\Psr7\Response не имеет метода __toString(), поэтому выполнение падает с ошибкой:
"Object of class GuzzleHttp\Psr7\Response could not be converted to string"
В строке 208 метода
\MoySklad\Components\Http\MoySkladHttpClient::makeRequest
вызывается исключениеthrow new ResponseParseException($res);
, в котором$res
является объектом класса\GuzzleHttp\Psr7\Response
.Далее в конструкторе класса
\MoySklad\Exceptions\ResponseParseException
есть код"Response decode error: " . $message
, в котором$message
является объектом класса\GuzzleHttp\Psr7\Response
.Класс
\GuzzleHttp\Psr7\Response
не имеет метода__toString()
, поэтому выполнение падает с ошибкой:"Object of class GuzzleHttp\Psr7\Response could not be converted to string"
The text was updated successfully, but these errors were encountered: