Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96218636
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
Mon, Dec 23, 21:19
Size
344 B
Mime Type
text/x-php
Expires
Wed, Dec 25, 21:19 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23145586
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