firefly-iii/app/Rules/Triggers/AmountLess.php

76 lines
1.6 KiB
PHP
Raw Normal View History

2016-01-13 07:37:19 -06:00
<?php
2016-02-05 05:08:25 -06:00
declare(strict_types = 1);
2016-01-13 07:37:19 -06:00
/**
* AmountLess.php
* Copyright (C) 2016 Sander Dorigo
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
*/
namespace FireflyIII\Rules\Triggers;
use FireflyIII\Models\RuleTrigger;
use FireflyIII\Models\TransactionJournal;
use Log;
/**
* Class AmountLess
*
* @package FireflyIII\Rules\Triggers
*/
class AmountLess implements TriggerInterface
{
/** @var TransactionJournal */
protected $journal;
2016-02-17 08:38:21 -06:00
/** @var RuleTrigger */
protected $trigger;
2016-01-13 07:37:19 -06:00
/**
* TriggerInterface constructor.
*
* @param RuleTrigger $trigger
* @param TransactionJournal $journal
*/
public function __construct(RuleTrigger $trigger, TransactionJournal $journal)
{
$this->trigger = $trigger;
$this->journal = $journal;
}
2016-02-17 08:38:21 -06:00
/**
* @{inheritdoc}
*
* @see TriggerInterface::matchesAnything
*
* @return bool
*/
public function matchesAnything()
{
return false;
}
2016-01-13 07:37:19 -06:00
/**
* @return bool
*/
public function triggered()
{
$amount = $this->journal->amount_positive;
$compare = $this->trigger->trigger_value;
$result = bccomp($amount, $compare, 4);
if ($result === -1) {
// found something
Log::debug($amount . ' is less than ' . $compare . '. Return true.');
return true;
}
// found nothing.
Log::debug($amount . ' is not less than ' . $compare . '. Return false.');
return false;
}
}