Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/infrastructure/markup/PhutilSafeHTMLProducerInterface.php
12241 views
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
*/
8
interface PhutilSafeHTMLProducerInterface {
9
10
public function producePhutilSafeHTML();
11
12
}
13
14