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

53 lines
1.1 KiB
PHP
Raw Normal View History

2016-01-13 08:10:49 -06:00
<?php
/**
* AppendDescription.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.
*/
declare(strict_types = 1);
2016-01-13 08:10:49 -06:00
namespace FireflyIII\Rules\Actions;
use FireflyIII\Models\RuleAction;
use FireflyIII\Models\TransactionJournal;
use Log;
2016-01-13 08:10:49 -06:00
/**
* Class AppendDescription
*
* @package FireflyIII\Rules\Actions
*/
class AppendDescription 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
{
Log::debug(sprintf('RuleAction AppendDescription appended "%s" to "%s".', $this->action->action_value, $journal->description));
$journal->description = $journal->description . $this->action->action_value;
$journal->save();
2016-01-13 08:10:49 -06:00
return true;
}
}