mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
Remove "effector" from HeraldAdapter
Summary: Ref T7731. - This does nothing. - I don't know what this was supposed to do. - It didn't do anything when it was introduced in rP084c79d85a in 2011, either. iiam Test Plan: - `grep` - ??? Reviewers: btrahan Reviewed By: btrahan Subscribers: epriestley Maniphest Tasks: T7731 Differential Revision: https://secure.phabricator.com/D12267
This commit is contained in:
parent
3a72e53795
commit
e0edb0797c
2 changed files with 0 additions and 24 deletions
|
@ -8,7 +8,6 @@ final class HeraldEffect {
|
|||
|
||||
private $ruleID;
|
||||
private $rulePHID;
|
||||
private $effector;
|
||||
|
||||
private $reason;
|
||||
|
||||
|
@ -57,15 +56,6 @@ final class HeraldEffect {
|
|||
return $this->rulePHID;
|
||||
}
|
||||
|
||||
public function setEffector($effector) {
|
||||
$this->effector = $effector;
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function getEffector() {
|
||||
return $this->effector;
|
||||
}
|
||||
|
||||
public function setReason($reason) {
|
||||
$this->reason = $reason;
|
||||
return $this;
|
||||
|
|
|
@ -4,12 +4,8 @@ final class HeraldApplyTranscript extends Phobject {
|
|||
|
||||
private $action;
|
||||
private $target;
|
||||
|
||||
private $ruleID;
|
||||
private $effector;
|
||||
|
||||
private $reason;
|
||||
|
||||
private $applied;
|
||||
private $appliedReason;
|
||||
|
||||
|
@ -21,7 +17,6 @@ final class HeraldApplyTranscript extends Phobject {
|
|||
$this->setAction($effect->getAction());
|
||||
$this->setTarget($effect->getTarget());
|
||||
$this->setRuleID($effect->getRuleID());
|
||||
$this->setEffector($effect->getEffector());
|
||||
$this->setReason($effect->getReason());
|
||||
$this->setApplied($applied);
|
||||
$this->setAppliedReason($reason);
|
||||
|
@ -54,15 +49,6 @@ final class HeraldApplyTranscript extends Phobject {
|
|||
return $this->ruleID;
|
||||
}
|
||||
|
||||
public function setEffector($effector) {
|
||||
$this->effector = $effector;
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function getEffector() {
|
||||
return $this->effector;
|
||||
}
|
||||
|
||||
public function setReason($reason) {
|
||||
$this->reason = $reason;
|
||||
return $this;
|
||||
|
|
Loading…
Reference in a new issue