[ Index ] |
PHP Cross Reference of Phabricator |
[Summary view] [Print] [Text view]
1 <?php 2 3 /** 4 * Represents something which can be the target of messages, like a user or 5 * channel. 6 */ 7 abstract class PhabricatorBotTarget { 8 9 private $name; 10 11 public function setName($name) { 12 $this->name = $name; 13 return $this; 14 } 15 16 public function getName() { 17 return $this->name; 18 } 19 20 abstract public function isPublic(); 21 22 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Sun Nov 30 09:20:46 2014 | Cross-referenced by PHPXref 0.7.1 |