Files
firefly-iii/app/Events/Event.php

24 lines
408 B
PHP
Raw Normal View History

<?php
2016-05-20 11:59:54 +02:00
/**
* Event.php
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* 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 11:59:54 +02:00
*/
2016-02-05 12:08:25 +01:00
declare(strict_types = 1);
namespace FireflyIII\Events;
2015-02-06 04:39:52 +01:00
/**
* Class Event
*
* @package FireflyIII\Events
*/
2015-02-11 07:35:10 +01:00
abstract class Event
{
//
2015-02-06 04:39:52 +01:00
}