/**
  * Find the tweets favourited by the current user.
  *
  * @param \Muffin\Webservice\Query $query The query to modify.
  * @param array $options Extra conditions to apply.
  * @return \Muffin\Webservice\Query The modified query.
  */
 public function findFavorites(Query $query, array $options = [])
 {
     $query->webservice($this->connection()->webservice('favorites'))->where($options);
     return $query;
 }