@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at recaptime-dev/main 36 lines 692 B view raw
1<?php 2 3final class PhabricatorAuthSessionInfo extends Phobject { 4 5 private $sessionType; 6 private $identityPHID; 7 private $isPartial; 8 9 public function setSessionType($session_type) { 10 $this->sessionType = $session_type; 11 return $this; 12 } 13 14 public function getSessionType() { 15 return $this->sessionType; 16 } 17 18 public function setIdentityPHID($identity_phid) { 19 $this->identityPHID = $identity_phid; 20 return $this; 21 } 22 23 public function getIdentityPHID() { 24 return $this->identityPHID; 25 } 26 27 public function setIsPartial($is_partial) { 28 $this->isPartial = $is_partial; 29 return $this; 30 } 31 32 public function getIsPartial() { 33 return $this->isPartial; 34 } 35 36}