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} 13 14