mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 11:22:40 +01:00
2befd239a8
Summary: This supports doing a bunch of sales funnel tracking on Phacility. Test Plan: See next diff. Reviewers: chad Reviewed By: chad Differential Revision: https://secure.phabricator.com/D16890
36 lines
692 B
PHP
36 lines
692 B
PHP
<?php
|
|
|
|
final class PhabricatorAuthSessionInfo extends Phobject {
|
|
|
|
private $sessionType;
|
|
private $identityPHID;
|
|
private $isPartial;
|
|
|
|
public function setSessionType($session_type) {
|
|
$this->sessionType = $session_type;
|
|
return $this;
|
|
}
|
|
|
|
public function getSessionType() {
|
|
return $this->sessionType;
|
|
}
|
|
|
|
public function setIdentityPHID($identity_phid) {
|
|
$this->identityPHID = $identity_phid;
|
|
return $this;
|
|
}
|
|
|
|
public function getIdentityPHID() {
|
|
return $this->identityPHID;
|
|
}
|
|
|
|
public function setIsPartial($is_partial) {
|
|
$this->isPartial = $is_partial;
|
|
return $this;
|
|
}
|
|
|
|
public function getIsPartial() {
|
|
return $this->isPartial;
|
|
}
|
|
|
|
}
|