/
mikopbx
/
ModuleNotifier
Обзор
Документация
Войти
/
mikopbx
/
ModuleNotifier
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
v1.1
Lib/VkResponseNormalizer.php
22 строки
426 B
boffart
fix: include text in VK send response
14 июл 2026, 12:12
14 июл 2026, 12:12
e016819
Код
Авторство
О чём код?
<?php declare(strict_types=1); namespace Modules\ModuleNotifier\Lib; final class VkResponseNormalizer { /** * @param mixed $messageId */ public static function sentMessage($messageId, string $messageText): array { return [ 'ok' => true, 'result' => [ 'message_id' => $messageId, 'text' => $messageText, ], ]; } }