mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 23:45:10 +00:00
Rule actions no longer need to know the journal at construction time. This is easier.
This commit is contained in:
@@ -87,8 +87,8 @@ class Processor
|
||||
*/
|
||||
foreach ($this->actions as $action) {
|
||||
/** @var ActionInterface $actionClass */
|
||||
$actionClass = ActionFactory::getAction($action, $this->journal);
|
||||
$actionClass->act();
|
||||
$actionClass = ActionFactory::getAction($action);
|
||||
$actionClass->act($this->journal);
|
||||
if ($action->stop_processing) {
|
||||
break;
|
||||
}
|
||||
|
Reference in New Issue
Block a user