Correct Aphlict websocket URI construction after PHP8 compatibility changes
[phabricator.git] / src / applications / calendar / parser / data / PhutilCalendarUserNode.php
blobea81e0d9d87c548ceab557c764a98b67de25a147
1 <?php
3 final class PhutilCalendarUserNode extends PhutilCalendarNode {
5 private $name;
6 private $uri;
7 private $status;
9 const STATUS_INVITED = 'invited';
10 const STATUS_ACCEPTED = 'accepted';
11 const STATUS_DECLINED = 'declined';
13 public function setName($name) {
14 $this->name = $name;
15 return $this;
18 public function getName() {
19 return $this->name;
22 public function setURI($uri) {
23 $this->uri = $uri;
24 return $this;
27 public function getURI() {
28 return $this->uri;
31 public function setStatus($status) {
32 $this->status = $status;
33 return $this;
36 public function getStatus() {
37 return $this->status;