smsplatform-1.0.x-dev/src/Direction.php
src/Direction.php
<?php
declare(strict_types=1);
namespace Drupal\smsplatform;
/**
* Contains direction constants for SMS Platform.
*/
final class Direction {
/**
* Whether the message is queued to be sent from the website.
*
* @var int
*/
public const OUTGOING = 1;
/**
* Whether the message was received by the website.
*
* @var int
*/
public const INCOMING = -1;
}
