mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-10 06:41:04 +01:00
13 lines
276 B
PHP
13 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();
|
||
|
|
||
|
}
|