1: <?php 2: 3: namespace NNV\OneSignal\Constants; 4: 5: /** 6: * This class containt notification types of OneSignal 7: */ 8: class NotificationTypes 9: { 10: /** 11: * Subscribed 12: */ 13: const SUBSCRIBED = 1; 14: 15: /** 16: * Unsubscribed 17: */ 18: const UNSUBSCRIBED = -2; 19: } 20: