Фикс возвращаемого значения KktResponse::getContent()

pull/2/head
Anthony Axenov 2020-05-29 22:06:04 +08:00
parent 0f658d38a9
commit 4d7e5dd76e
1 changed files with 2 additions and 2 deletions

View File

@ -81,9 +81,9 @@ class KktResponse implements JsonSerializable
/**
* Возвращает объект результата запроса
*
* @return \stdClass
* @return stdClass|null
*/
public function getContent(): stdClass
public function getContent(): ?stdClass
{
return $this->content;
}