Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93486806
PhutilRemarkupRule.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Nov 29, 03:41
Size
371 B
Mime Type
text/x-php
Expires
Sun, Dec 1, 03:41 (1 d, 22 h)
Engine
blob
Format
Raw Data
Handle
22647692
Attached To
rPHU libphutil
PhutilRemarkupRule.php
View Options
<?php
/**
* @group markup
* @stable
*/
abstract
class
PhutilRemarkupRule
{
private
$engine
;
public
function
setEngine
(
PhutilRemarkupEngine
$engine
)
{
$this
->
engine
=
$engine
;
return
$this
;
}
public
function
getEngine
()
{
return
$this
->
engine
;
}
abstract
public
function
apply
(
$text
);
public
function
didMarkupText
()
{
return
;
}
}
Event Timeline
Log In to Comment