[ Index ]

PHP Cross Reference of Phabricator

title

Body

[close]

/src/applications/herald/storage/transcript/ -> HeraldRuleTranscript.php (source)

   1  <?php
   2  
   3  final class HeraldRuleTranscript {
   4  
   5    protected $ruleID;
   6    protected $result;
   7    protected $reason;
   8  
   9    protected $ruleName;
  10    protected $ruleOwner;
  11  
  12    public function setResult($result) {
  13      $this->result = $result;
  14      return $this;
  15    }
  16  
  17    public function getResult() {
  18      return $this->result;
  19    }
  20  
  21    public function setReason($reason) {
  22      $this->reason = $reason;
  23      return $this;
  24    }
  25  
  26    public function getReason() {
  27      return $this->reason;
  28    }
  29  
  30    public function setRuleID($rule_id) {
  31      $this->ruleID = $rule_id;
  32      return $this;
  33    }
  34  
  35    public function getRuleID() {
  36      return $this->ruleID;
  37    }
  38  
  39    public function setRuleName($rule_name) {
  40      $this->ruleName = $rule_name;
  41      return $this;
  42    }
  43  
  44    public function getRuleName() {
  45      return $this->ruleName;
  46    }
  47  
  48    public function setRuleOwner($rule_owner) {
  49      $this->ruleOwner = $rule_owner;
  50      return $this;
  51    }
  52  
  53    public function getRuleOwner() {
  54      return $this->ruleOwner;
  55    }
  56  }


Generated: Sun Nov 30 09:20:46 2014 Cross-referenced by PHPXref 0.7.1