/
mikopbx
/
ModuleTelegramNotify
Обзор
Документация
Войти
/
mikopbx
/
ModuleTelegramNotify
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
master
Models/ModuleTelegramNotify.php
36 строк
743 B
Nikolay Beketov
initial
24 ноя 2020, 18:52
24 ноя 2020, 18:52
8f53d75
Код
Авторство
О чём код?
<?php /** * Copyright © MIKO LLC - All Rights Reserved * Unauthorized copying of this file, via any medium is strictly prohibited * Proprietary and confidential * Written by Alexey Portnov, 12 2018 */ namespace Modules\ModuleTelegramNotify\Models; use MikoPBX\Modules\Models\ModulesModelsBase; class ModuleTelegramNotify extends ModulesModelsBase { /** * @Primary * @Identity * @Column(type="integer", nullable=false) */ public $id; /** * Telegram api token username * * @Column(type="string", nullable=true) */ public $telegram_api_token; public function initialize(): void { $this->setSource('m_ModuleTelegramNotify'); parent::initialize(); } }