mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-24 04:29:04 +01:00
Add some trivial Herald related PhpDoc comments
Summary: Self-explanatory. Test Plan: Read and play with code. Reviewers: O1 Blessed Committers, valerio.bozzolan Reviewed By: O1 Blessed Committers, valerio.bozzolan Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno Differential Revision: https://we.phorge.it/D25884
This commit is contained in:
parent
908d253cf6
commit
f9e5630bab
3 changed files with 22 additions and 0 deletions
|
@ -122,6 +122,9 @@ abstract class HeraldAction extends Phobject {
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @return HeraldAdapter HeraldAdapter class of the action
|
||||||
|
**/
|
||||||
final public function getAdapter() {
|
final public function getAdapter() {
|
||||||
return $this->adapter;
|
return $this->adapter;
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,6 +13,9 @@ final class HeraldEffect extends Phobject {
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return string PHID of the object that Herald is applied on
|
||||||
|
*/
|
||||||
public function getObjectPHID() {
|
public function getObjectPHID() {
|
||||||
return $this->objectPHID;
|
return $this->objectPHID;
|
||||||
}
|
}
|
||||||
|
@ -22,6 +25,9 @@ final class HeraldEffect extends Phobject {
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return string ACTIONCONST of the HeraldAction
|
||||||
|
*/
|
||||||
public function getAction() {
|
public function getAction() {
|
||||||
return $this->action;
|
return $this->action;
|
||||||
}
|
}
|
||||||
|
@ -31,6 +37,9 @@ final class HeraldEffect extends Phobject {
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return array|null
|
||||||
|
*/
|
||||||
public function getTarget() {
|
public function getTarget() {
|
||||||
return $this->target;
|
return $this->target;
|
||||||
}
|
}
|
||||||
|
@ -40,6 +49,9 @@ final class HeraldEffect extends Phobject {
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return HeraldRule
|
||||||
|
*/
|
||||||
public function getRule() {
|
public function getRule() {
|
||||||
return $this->rule;
|
return $this->rule;
|
||||||
}
|
}
|
||||||
|
@ -49,6 +61,10 @@ final class HeraldEffect extends Phobject {
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return string Reason why Herald effect was applied, for example
|
||||||
|
* "Conditions were met for H123 RuleName"
|
||||||
|
*/
|
||||||
public function getReason() {
|
public function getReason() {
|
||||||
return $this->reason;
|
return $this->reason;
|
||||||
}
|
}
|
||||||
|
|
|
@ -265,6 +265,9 @@ final class HeraldRule extends HeraldDAO
|
||||||
->addString($this->getName());
|
->addString($this->getName());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return string Name of the rule, for example "H123 RuleName (Disabled)"
|
||||||
|
*/
|
||||||
public function getEditorDisplayName() {
|
public function getEditorDisplayName() {
|
||||||
$name = pht('%s %s', $this->getMonogram(), $this->getName());
|
$name = pht('%s %s', $this->getMonogram(), $this->getName());
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue