Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F100477679
PhutilConsoleMessage.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, Jan 31, 02:53
Size
884 B
Mime Type
text/x-php
Expires
Sun, Feb 2, 02:53 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23935027
Attached To
rPHU libphutil
PhutilConsoleMessage.php
View Options
<?php
final
class
PhutilConsoleMessage
extends
Phobject
{
const
TYPE_CONFIRM
=
'phutil:confirm'
;
const
TYPE_PROMPT
=
'phutil:prompt'
;
const
TYPE_INPUT
=
'phutil:in'
;
const
TYPE_OUT
=
'phutil:out'
;
const
TYPE_ERR
=
'phutil:err'
;
const
TYPE_LOG
=
'phutil:log'
;
const
TYPE_TTY
=
'phutil:tty?'
;
const
TYPE_IS_TTY
=
'phutil:tty!'
;
const
TYPE_COLS
=
'phutil:cols?'
;
const
TYPE_COL_WIDTH
=
'phutil:cols!'
;
const
TYPE_ENABLED
=
'phutil:enabled?'
;
const
TYPE_IS_ENABLED
=
'phutil:enabled!'
;
private
$type
;
private
$data
;
public
function
setData
(
$data
)
{
$this
->
data
=
$data
;
return
$this
;
}
public
function
getData
()
{
return
$this
->
data
;
}
public
function
setType
(
$type
)
{
$this
->
type
=
$type
;
return
$this
;
}
public
function
getType
()
{
return
$this
->
type
;
}
}
Event Timeline
Log In to Comment