mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-09 22:31:03 +01:00
f9b3e3360b
Summary: Ref T13395. Move cache classes, syntax highlighters, other markup classes, and sprite sheets to Phabricator. Test Plan: Attempted to find any callers for any of this stuff in libphutil or Arcanist and couldn't. Maniphest Tasks: T13395 Differential Revision: https://secure.phabricator.com/D20977
12 lines
276 B
PHP
12 lines
276 B
PHP
<?php
|
|
|
|
/**
|
|
* Implement this interface to mark an object as capable of producing a
|
|
* PhutilSafeHTML representation. This is primarily useful for building
|
|
* renderable HTML views.
|
|
*/
|
|
interface PhutilSafeHTMLProducerInterface {
|
|
|
|
public function producePhutilSafeHTML();
|
|
|
|
}
|