Page MenuHomestyx hydra

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 PhutilInvalidStateException('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
Thu, Feb 6, 8:38 AM (1 d, 36 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
33986
Default Alt Text
PhabricatorEditor.php (727 B)

Event Timeline