Page MenuHomePhorge

PhabricatorBotTarget.php
No OneTemporary

Size
344 B
Referenced Files
None
Subscribers
None

PhabricatorBotTarget.php

<?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();
}

File Metadata

Mime Type
text/x-php
Expires
Sun, May 4, 8:44 PM (1 d, 11 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
67792
Default Alt Text
PhabricatorBotTarget.php (344 B)

Event Timeline