Direction.php in SMS Framework 8
Same filename and directory in other branches
Namespace
Drupal\smsFile
src/Direction.phpView 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;
}