2016-01-13 00:47:26 -06:00
|
|
|
<?php
|
2016-02-05 05:08:25 -06:00
|
|
|
declare(strict_types = 1);
|
2016-01-13 00:47:26 -06:00
|
|
|
/**
|
|
|
|
* TriggerInterface.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;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Interface TriggerInterface
|
|
|
|
*
|
|
|
|
* @package FireflyIII\Rules\Triggers
|
|
|
|
*/
|
|
|
|
interface TriggerInterface
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* TriggerInterface constructor.
|
|
|
|
*
|
|
|
|
* @param RuleTrigger $trigger
|
|
|
|
* @param TransactionJournal $journal
|
|
|
|
*/
|
|
|
|
public function __construct(RuleTrigger $trigger, TransactionJournal $journal);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function triggered();
|
2016-02-17 06:02:27 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks whether this trigger will match all transactions
|
|
|
|
* For example: amount > 0 or description starts with ''
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function matchesAnything();
|
2016-01-28 14:50:20 -06:00
|
|
|
}
|