2016-01-08 09:02:15 -06:00
|
|
|
<?php
|
2016-05-20 04:59:54 -05:00
|
|
|
/**
|
|
|
|
* Event.php
|
|
|
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
|
|
|
*
|
2016-10-04 23:52:15 -05:00
|
|
|
* This software may be modified and distributed under the terms of the
|
|
|
|
* Creative Commons Attribution-ShareAlike 4.0 International License.
|
|
|
|
*
|
|
|
|
* See the LICENSE file for details.
|
2016-05-20 04:59:54 -05:00
|
|
|
*/
|
|
|
|
|
2016-02-05 05:08:25 -06:00
|
|
|
declare(strict_types = 1);
|
2016-01-08 09:02:15 -06:00
|
|
|
namespace FireflyIII\Events;
|
2015-02-05 21:39:52 -06:00
|
|
|
|
2016-01-09 01:20:55 -06:00
|
|
|
/**
|
|
|
|
* Class Event
|
|
|
|
*
|
|
|
|
* @package FireflyIII\Events
|
|
|
|
*/
|
2015-02-11 00:35:10 -06:00
|
|
|
abstract class Event
|
|
|
|
{
|
|
|
|
//
|
2015-02-05 21:39:52 -06:00
|
|
|
}
|