[ Index ]

PHP Cross Reference of Phabricator

title

Body

[close]

/src/infrastructure/daemon/bot/target/ -> PhabricatorBotTarget.php (source)

   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  }


Generated: Sun Nov 30 09:20:46 2014 Cross-referenced by PHPXref 0.7.1