diff options
author | Mario <mario@mariovavti.com> | 2024-10-06 08:59:36 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2024-10-06 08:59:36 +0000 |
commit | 19eeadfe5bafb8bdec3ac102d9b9f49593cc0933 (patch) | |
tree | 4cedc8629789ce45c733a3a3c7df4ae4d601169e /Zotlabs/ActivityStreams/Question.php | |
parent | 2693e9e99097c4bbcf8c9103a5876bc0585ff84c (diff) | |
download | volse-hubzilla-19eeadfe5bafb8bdec3ac102d9b9f49593cc0933.tar.gz volse-hubzilla-19eeadfe5bafb8bdec3ac102d9b9f49593cc0933.tar.bz2 volse-hubzilla-19eeadfe5bafb8bdec3ac102d9b9f49593cc0933.zip |
port some libs from streams repo
Diffstat (limited to 'Zotlabs/ActivityStreams/Question.php')
-rw-r--r-- | Zotlabs/ActivityStreams/Question.php | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/Zotlabs/ActivityStreams/Question.php b/Zotlabs/ActivityStreams/Question.php new file mode 100644 index 000000000..63f642eaa --- /dev/null +++ b/Zotlabs/ActivityStreams/Question.php @@ -0,0 +1,67 @@ +<?php + +namespace Zotlabs\ActivityStreams; + +class Question extends ASObject +{ + public $oneOf; + public $anyOf; + public $closed; + + /** + * @return mixed + */ + public function getOneOf() + { + return $this->oneOf; + } + + /** + * @param mixed $oneOf + * @return Question + */ + public function setOneOf($oneOf) + { + $this->oneOf = $oneOf; + return $this; + } + + /** + * @return mixed + */ + public function getAnyOf() + { + return $this->anyOf; + } + + /** + * @param mixed $anyOf + * @return Question + */ + public function setAnyOf($anyOf) + { + $this->anyOf = $anyOf; + return $this; + } + + /** + * @return mixed + */ + public function getClosed() + { + return $this->closed; + } + + /** + * @param mixed $closed + * @return Question + */ + public function setClosed($closed) + { + $this->closed = $closed; + return $this; + } + + + +} |