url->SetAccessToken($access_token)->DisableCache(); } /// Retrieves only unread items from the users inbox. /** * \return the current instance */ public function Unread() { $this->url->SetParameter('unread'); return $this; } /// Causes only inbox items that were added later than the specified time to be returned. /** * \param $date a timestamp that represents the minimum time that returned items should have * \return the current instance */ public function Since($date) { $this->url->SetQueryStringParameter('since', $date); return $this; } } endif;