Exemplo n.º 1
0
 public function addUpdate($id, $body, $created_at, $display_at, $status, $twitter_updated_at, $updated_at, $wants_twitter_update)
 {
     $update = new Update();
     $update->setID($id);
     $update->setBody($body);
     $update->setCreatedAt($created_at);
     $update->setDisplayAt($display_at);
     $update->setStatus($status);
     $update->setTwitterUpdatedAt($twitter_updated_at);
     $update->setUpdatedAt($updated_at);
     $update->setWantsTwitterUpdate($wants_twitter_update);
     $this->updates[] = $update;
 }