Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98329069
PhabricatorBotTarget.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
Sun, Jan 12, 03:55
Size
344 B
Mime Type
text/x-php
Expires
Tue, Jan 14, 03:55 (2 d)
Engine
blob
Format
Raw Data
Handle
23559740
Attached To
rPH Phabricator
PhabricatorBotTarget.php
View Options
<?php
/**
* Represents something which can be the target of messages, like a user or
* channel.
*/
abstract
class
PhabricatorBotTarget
{
private
$name
;
public
function
setName
(
$name
)
{
$this
->
name
=
$name
;
return
$this
;
}
public
function
getName
()
{
return
$this
->
name
;
}
abstract
public
function
isPublic
();
}
Event Timeline
Log In to Comment