Unfinished activity ('quantified self') tracker
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. ?>