/**
  * Returns a single Tweet, specified by the id parameter. The Tweet’s author will also be embedded within the tweet.
  * 
  * Parameters :
  * - count (1-200)
  * - trim_user (0|1)
  * - include_my_retweet (0|1)
  * - include_entities (0|1)
  *
  * @static 
  */
 public static function getTweet($id, $parameters = array())
 {
     return \Thujohn\Twitter\Twitter::getTweet($id, $parameters);
 }