|
@@ -70,5 +70,29 @@ class CustomOAuthUser extends OAuthUser
|
|
|
{
|
|
|
$this->tenancyCurrent = $tenancyCurrent;
|
|
|
}
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @param boolean $hasIntercom
|
|
|
+ */
|
|
|
+ public function setHasIntercom($hasIntercom)
|
|
|
+ {
|
|
|
+ $this->hasIntercom = $hasIntercom;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @return boolean
|
|
|
+ */
|
|
|
+ public function getHasIntercom()
|
|
|
+ {
|
|
|
+ return $this->hasIntercom;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @return boolean
|
|
|
+ */
|
|
|
+ public function hasIntercom()
|
|
|
+ {
|
|
|
+ return $this->hasIntercom;
|
|
|
+ }
|
|
|
|
|
|
}
|