Your IP : 18.189.43.15


Current Path : /var/www/axolotl/data/www/yar.axolotls.ru/bitrix/modules/messageservice/lib/
Upload File :
Current File : /var/www/axolotl/data/www/yar.axolotls.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;
	}
}