/**
  * Blocks the specified user from following the authenticating user. In addition the blocked user will not show in the authenticating users mentions or timeline (unless retweeted by another user). If a follow or friend relationship exists it is destroyed.
  * 
  * Parameters :
  * - screen_name
  * - user_id
  * - include_entities (0|1)
  * - skip_status (0|1)
  *
  * @static 
  */
 public static function postBlock($parameters = array())
 {
     return \Thujohn\Twitter\Twitter::postBlock($parameters);
 }