| Current Path : /var/www/element/data/www/revenuestory.ru/bitrix/modules/messageservice/lib/ |
| Current File : /var/www/element/data/www/revenuestory.ru/bitrix/modules/messageservice/lib/messagetype.php |
<?php
namespace Bitrix\MessageService;
class MessageType
{
const SMS = 'SMS';
public static function isSupported($type)
{
return $type === static::SMS;
}
}