diff --git a/src/applications/herald/engine/HeraldEffect.php b/src/applications/herald/engine/HeraldEffect.php --- a/src/applications/herald/engine/HeraldEffect.php +++ b/src/applications/herald/engine/HeraldEffect.php @@ -8,7 +8,6 @@ private $ruleID; private $rulePHID; - private $effector; private $reason; @@ -57,15 +56,6 @@ 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; diff --git a/src/applications/herald/storage/transcript/HeraldApplyTranscript.php b/src/applications/herald/storage/transcript/HeraldApplyTranscript.php --- a/src/applications/herald/storage/transcript/HeraldApplyTranscript.php +++ b/src/applications/herald/storage/transcript/HeraldApplyTranscript.php @@ -4,12 +4,8 @@ private $action; private $target; - private $ruleID; - private $effector; - private $reason; - private $applied; private $appliedReason; @@ -21,7 +17,6 @@ $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 @@ 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;