Ejemplo n.º 1
0
 /**
  * Check if POST received is a notification
  */
 public function isNotification(array $post)
 {
     // Message keys
     $keys = ['message_type', 'shortcode', 'message_id', 'status', 'credits_cost', 'timestamp'];
     // Return
     return Utilities::arrayKeysExist($keys, $post);
 }