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