Page MenuHomePhorge

PhabricatorEditor.php
No OneTemporary

PhabricatorEditor.php

<?php
abstract class PhabricatorEditor extends Phobject {
private $actor;
private $excludeMailRecipientPHIDs = array();
final public function setActor(PhabricatorUser $actor) {
$this->actor = $actor;
return $this;
}
final public function getActor() {
return $this->actor;
}
final public function requireActor() {
$actor = $this->getActor();
if (!$actor) {
throw new Exception('You must setActor()!');
}
return $actor;
}
final public function setExcludeMailRecipientPHIDs($phids) {
$this->excludeMailRecipientPHIDs = $phids;
return $this;
}
final protected function getExcludeMailRecipientPHIDs() {
return $this->excludeMailRecipientPHIDs;
}
}

File Metadata

Mime Type
text/x-php
Expires
Sun, Jan 19, 19:06 (1 d, 11 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1111211
Default Alt Text
PhabricatorEditor.php (721 B)

Event Timeline