Fixed a bug mentioned by @vissert and added some logging for @sandermulders

Signed-off-by: James Cole <thegrumpydictator@gmail.com>
This commit is contained in:
James Cole
2016-09-12 18:43:10 +02:00
parent 5379e03447
commit a7351f348d
4 changed files with 60 additions and 5 deletions

View File

@@ -98,5 +98,23 @@ class AbstractTrigger
return $self;
}
/**
* @return RuleTrigger
*/
public function getTrigger(): RuleTrigger
{
return $this->trigger;
}
/**
* @return string
*/
public function getTriggerValue(): string
{
return $this->triggerValue;
}
}