Skip to content

Commit

Permalink
v-1.1.1
Browse files Browse the repository at this point in the history
Исправления и улучшения
  • Loading branch information
ma.mochalov committed Mar 30, 2021
1 parent b782e5b commit 34da4ac
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Все заметные изменения в u_bot задокументированы в этом файле с использованием принципов [Keep a CHANGELOG](http://keepachangelog.com/).


## [1.1.1] - 2021-03-29
## [1.1.1] - 2021-03-30

### Добавлено

Expand Down Expand Up @@ -70,5 +70,5 @@
## [0.1-beta] - 2020-04-24
Создание бета-версии

[master]: https://github.com/max36895/universal_bot/compare/1.1...master
[master]: https://github.com/max36895/universal_bot/compare/1.1.1...master
[dev]: https://github.com/max36895/universal_bot/compare/master...dev
8 changes: 6 additions & 2 deletions src/MM/bot/core/types/Alisa.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
namespace MM\bot\core\types;


use Exception;
use MM\bot\components\button\Buttons;
use MM\bot\components\sound\types\AlisaSound;
use MM\bot\components\standard\Text;
Expand Down Expand Up @@ -45,6 +46,7 @@ class Alisa extends TemplateTypeModel
* Получение данных, необходимых для построения ответа пользователю.
*
* @return array
* @throws Exception
*/
protected function getResponse(): array
{
Expand All @@ -68,8 +70,9 @@ protected function getResponse(): array
* @param string|null $content Запрос пользователя.
* @param BotController $controller Ссылка на класс с логикой навык/бота.
* @return bool
* @see TemplateTypeModel::init() Смотри тут
* @throws Exception
* @api
* @see TemplateTypeModel::init() Смотри тут
*/
public function init(?string $content, BotController &$controller): bool
{
Expand Down Expand Up @@ -162,8 +165,9 @@ public function init(?string $content, BotController &$controller): bool
* Получение ответа, который отправится пользователю. В случае с Алисой, Марусей и Сбер, возвращается json. С остальными типами, ответ отправляется непосредственно на сервер.
*
* @return string
* @see TemplateTypeModel::getContext() Смотри тут
* @throws Exception
* @api
* @see TemplateTypeModel::getContext() Смотри тут
*/
public function getContext(): string
{
Expand Down

0 comments on commit 34da4ac

Please sign in to comment.