mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-27 17:31:09 -06:00
34 lines
724 B
PHP
34 lines
724 B
PHP
|
<?php
|
||
|
/**
|
||
|
* 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();
|
||
|
}
|