Unfinished activity ('quantified self') tracker
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

event.php 266B

1234567891011121314151617181920212223
  1. <?PHP
  2. class Event {
  3. private $data;
  4. private $time;
  5. public function __construct($time, $data) {
  6. $this->time = $time;
  7. $this->data = $data;
  8. }
  9. public function getTime() {
  10. return $this->time;
  11. }
  12. public function getData() {
  13. return $this->data;
  14. }
  15. }
  16. ?>