/**
  * Set SendGrid Credentials
  *
  * ## Overview
  *
  * @uses SendgridConnector
  *
  * @see NotificationManager
  *
  * @param array An array of creds for SendGrid API.
  * @return true Always unless fatal error or exception is thrown.
  *
  * @version 2015-07-05.1
  * @since 0.5.1b
  * @author TronNet DevOps [Sean Murray] <*****@*****.**>
  */
 public static function SetCreds(array $creds)
 {
     DebugManager::Log("Setting SendGrid Credentials", '@');
     DebugManager::Log($creds);
     self::$_credentials = $creds;
     return true;
 }