@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
at upstream/main 17 lines 466 B view raw
1<?php 2 3final class PhabricatorAuthContactNumberEditController 4 extends PhabricatorAuthContactNumberController { 5 6 public function handleRequest(AphrontRequest $request) { 7 $sms_auth_factor = new PhabricatorSMSAuthFactor(); 8 if ($sms_auth_factor->isSMSMailerConfigured()) { 9 return id(new PhabricatorAuthContactNumberEditEngine()) 10 ->setController($this) 11 ->buildResponse(); 12 } else { 13 return new Aphront404Response(); 14 } 15 } 16 17}