Cleanup of processor after introduction of factories

This commit is contained in:
Robert Horlings 2016-02-17 13:26:38 +01:00
parent b671da900a
commit af7da586aa

View File

@ -18,7 +18,6 @@ use FireflyIII\Rules\Actions\ActionInterface;
use FireflyIII\Rules\Actions\ActionFactory;
use FireflyIII\Rules\Triggers\TriggerInterface;
use FireflyIII\Rules\Triggers\TriggerFactory;
use FireflyIII\Support\Domain;
use Log;
/**
@ -32,10 +31,6 @@ class Processor
protected $journal;
/** @var Rule */
protected $rule;
/** @var array */
private $actionTypes = [];
/** @var array */
private $triggerTypes = [];
/**
* Processor constructor.
@ -47,8 +42,6 @@ class Processor
{
$this->rule = $rule;
$this->journal = $journal;
$this->triggerTypes = Domain::getRuleTriggers();
$this->actionTypes = Domain::getRuleActions();
}
/**