Fix issue where the tester would not respect the strict yes/no setting.

This commit is contained in:
James Cole
2018-08-31 17:48:54 +02:00
parent 6377459e2f
commit 0cfe991482
4 changed files with 66 additions and 21 deletions

View File

@@ -62,6 +62,22 @@ class Processor
$this->actions = new Collection;
}
/**
* @return bool
*/
public function isStrict(): bool
{
return $this->strict;
}
/**
* @param bool $strict
*/
public function setStrict(bool $strict): void
{
$this->strict = $strict;
}
/**
* Return found triggers
*