You are here

Direction.php in SMS Framework 8

Same filename and directory in other branches
  1. 2.x src/Direction.php
  2. 2.1.x src/Direction.php

Namespace

Drupal\sms

File

src/Direction.php
View source
<?php

namespace Drupal\sms;


/**
 * Contains direction constants for SMS Framework.
 */
final class Direction {

  /**
   * Whether the message is queued to be sent from the website.
   *
   * @var int
   */
  const OUTGOING = 1;

  /**
   * Whether the message was received by the website.
   *
   * @var int
   */
  const INCOMING = -1;

}

Classes

Namesort descending Description
Direction Contains direction constants for SMS Framework.