Page MenuHomestyx hydra

PhabricatorBotMessage.php
No OneTemporary

PhabricatorBotMessage.php

<?php
final class PhabricatorBotMessage extends Phobject {
private $sender;
private $command;
private $body;
private $target;
private $public;
public function __construct() {
// By default messages are public
$this->public = true;
}
public function setSender(PhabricatorBotTarget $sender = null) {
$this->sender = $sender;
return $this;
}
public function getSender() {
return $this->sender;
}
public function setCommand($command) {
$this->command = $command;
return $this;
}
public function getCommand() {
return $this->command;
}
public function setBody($body) {
$this->body = $body;
return $this;
}
public function getBody() {
return $this->body;
}
public function setTarget(PhabricatorBotTarget $target = null) {
$this->target = $target;
return $this;
}
public function getTarget() {
return $this->target;
}
}

File Metadata

Mime Type
text/x-php
Expires
Tue, May 26, 10:07 PM (1 d, 17 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1552089
Default Alt Text
PhabricatorBotMessage.php (927 B)

Event Timeline