@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 recaptime-dev/main 12 lines 276 B view raw
1<?php 2 3/** 4 * Implement this interface to mark an object as capable of producing a 5 * PhutilSafeHTML representation. This is primarily useful for building 6 * renderable HTML views. 7 */ 8interface PhutilSafeHTMLProducerInterface { 9 10 public function producePhutilSafeHTML(); 11 12}