@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 14 lines 323 B view raw
1<?php 2 3final class PhrictionEditEngineController 4 extends PhrictionController { 5 6 public function handleRequest(AphrontRequest $request) { 7 // NOTE: For now, this controller is only used to handle comments. 8 9 return id(new PhrictionDocumentEditEngine()) 10 ->setController($this) 11 ->buildResponse(); 12 } 13 14}