. */ namespace Xibo\Connector; /** * Connector Interface for Emergency Alerts */ interface EmergencyAlertInterface { /** * Represents the status when there is at least one alert of type "Actual". */ public const ACTUAL_ALERT = 'actual_alerts'; /** * Represents the status when there are no alerts of any type. */ public const NO_ALERT = 'no_alerts'; /** * Represents the status when there is at least one test alert * (e.g., Exercise, System, Test, Draft). */ public const TEST_ALERT = 'test_alerts'; }