firefly-iii/app/Rules/Actions/SetDescription.php

50 lines
958 B
PHP
Raw Normal View History

2016-01-13 08:10:49 -06:00
<?php
2016-02-05 05:08:25 -06:00
declare(strict_types = 1);
2016-01-13 08:10:49 -06:00
/**
* SetDescription.php
2016-04-01 09:44:46 -05:00
* Copyright (C) 2016 thegrumpydictator@gmail.com
2016-01-13 08:10:49 -06:00
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
*/
namespace FireflyIII\Rules\Actions;
use FireflyIII\Models\RuleAction;
use FireflyIII\Models\TransactionJournal;
/**
* Class SetDescription
*
* @package FireflyIII\Rules\Actions
*/
class SetDescription implements ActionInterface
{
private $action;
2016-01-13 08:10:49 -06:00
/**
* TriggerInterface constructor.
*
* @param RuleAction $action
2016-01-13 08:10:49 -06:00
*/
public function __construct(RuleAction $action)
2016-01-13 08:10:49 -06:00
{
$this->action = $action;
2016-01-13 08:10:49 -06:00
}
/**
* @param TransactionJournal $journal
*
2016-01-13 08:10:49 -06:00
* @return bool
*/
2016-04-05 15:00:03 -05:00
public function act(TransactionJournal $journal): bool
2016-01-13 08:10:49 -06:00
{
$journal->description = $this->action->action_value;
$journal->save();
2016-01-13 08:10:49 -06:00
return true;
}
}