|
@@ -17,6 +17,11 @@ class CustomOAuthUser extends OAuthUser
|
|
|
*/
|
|
|
protected $tenancies = array();
|
|
|
|
|
|
+ /**
|
|
|
+ * @var array
|
|
|
+ */
|
|
|
+ protected $tenancyCurrent = array();
|
|
|
+
|
|
|
|
|
|
/**
|
|
|
* {@inheritdoc}
|
|
@@ -50,4 +55,20 @@ class CustomOAuthUser extends OAuthUser
|
|
|
$this->tenancies = $tenancies;
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * @return array
|
|
|
+ */
|
|
|
+ public function getTenancyCurrent()
|
|
|
+ {
|
|
|
+ return $this->tenancyCurrent;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @param array $tenancyCurrent
|
|
|
+ */
|
|
|
+ public function setTenancyCurrent($tenancyCurrent)
|
|
|
+ {
|
|
|
+ $this->tenancyCurrent = $tenancyCurrent;
|
|
|
+ }
|
|
|
+
|
|
|
}
|