Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F105492557
PhutilConsoleServerChannel.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
Mon, Mar 17, 15:51
Size
375 B
Mime Type
text/x-php
Expires
Wed, Mar 19, 15:51 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24990885
Attached To
rPHU libphutil
PhutilConsoleServerChannel.php
View Options
<?php
/**
* @group console
*/
final
class
PhutilConsoleServerChannel
extends
PhutilChannelChannel
{
public
function
didReceiveStderr
(
PhutilExecChannel
$channel
,
$stderr
)
{
$message
=
id
(
new
PhutilConsoleMessage
())
->
setType
(
PhutilConsoleMessage
::
TYPE_ERR
)
->
setData
(
array
(
'%s'
,
$stderr
));
$this
->
getUnderlyingChannel
()->
addMessage
(
$message
);
}
}
Event Timeline
Log In to Comment