mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-11 17:32:41 +01:00
17 lines
226 B
PHP
17 lines
226 B
PHP
|
<?php
|
||
|
|
||
|
abstract class PhabricatorMail {
|
||
|
|
||
|
private $actor;
|
||
|
|
||
|
public function setActor(PhabricatorUser $actor) {
|
||
|
$this->actor = $actor;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
public function getActor() {
|
||
|
return $this->actor;
|
||
|
}
|
||
|
|
||
|
}
|