New events.

This commit is contained in:
James Cole
2016-01-12 21:38:12 +01:00
parent 11f63fa6ce
commit b3a419b2f3
2 changed files with 85 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
<?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)
{
}
}