Some more code cleanup.

This commit is contained in:
James Cole
2016-02-17 21:59:47 +01:00
parent a178fed0c6
commit f7d06b9759
7 changed files with 9 additions and 11 deletions

View File

@@ -29,13 +29,13 @@ use Log;
final class Processor
{
/** @var Collection */
private $actions;
public $actions;
/** @var TransactionJournal */
private $journal;
public $journal;
/** @var Rule */
private $rule;
public $rule;
/** @var Collection */
private $triggers;
public $triggers;
/**
* Processor constructor.
@@ -44,7 +44,7 @@ final class Processor
private function __construct()
{
$this->triggers = new Collection;
$this->actions = new Collection;
$this->actions = new Collection;
}
/**