You are here

SmsMessageStatus.php in SMS Framework 2.x

Namespace

Drupal\sms\Message

File

src/Message/SmsMessageStatus.php
View source
<?php

declare (strict_types=1);
namespace Drupal\sms\Message;


/**
 * Defines common SMS Framework message state.
 */
class SmsMessageStatus {

  /**
   * Message could not be processed due to an unknown problem with the gateway.
   */
  const ERROR = 'error';

}

Classes

Namesort descending Description
SmsMessageStatus Defines common SMS Framework message state.