Correct Aphlict websocket URI construction after PHP8 compatibility changes
[phabricator.git] / src / applications / auth / guidance / PhabricatorAuthProvidersGuidanceContext.php
blob12c8300811d8ce3fef71f0b944fc79bb5168d7d7
1 <?php
3 final class PhabricatorAuthProvidersGuidanceContext
4 extends PhabricatorGuidanceContext {
6 private $canManage = false;
8 public function setCanManage($can_manage) {
9 $this->canManage = $can_manage;
10 return $this;
13 public function getCanManage() {
14 return $this->canManage;