mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
40 lines
708 B
PHP
40 lines
708 B
PHP
|
<?php
|
||
|
/**
|
||
|
* FireRulesForUpdate.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\Handlers\Events;
|
||
|
use FireflyIII\Events\TransactionJournalUpdated;
|
||
|
|
||
|
/**
|
||
|
* Class FireRulesForUpdate
|
||
|
*
|
||
|
* @package FireflyIII\Handlers\Events
|
||
|
*/
|
||
|
class FireRulesForUpdate
|
||
|
{
|
||
|
/**
|
||
|
* Create the event handler.
|
||
|
*
|
||
|
*/
|
||
|
public function __construct()
|
||
|
{
|
||
|
//
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Handle the event.
|
||
|
*
|
||
|
* @param TransactionJournalUpdated $event
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function handle(TransactionJournalUpdated $event)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|