Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
applevoip.php
1<?php
2
4
6
7class AppleVoip extends Apple
8{
9 protected int $sandboxModifier = 4;
10 protected int $productionModifier = 5;
11
12 function getMessageInstance(string $token): AppleVoipMessage
13 {
14 return new AppleVoipMessage($token, 4096);
15 }
16
17 public static function shouldBeSent($messageRowData): bool
18 {
19 return true;
20 }
21}
static shouldBeSent($messageRowData)
Definition applevoip.php:17