mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-31 19:27:51 -06:00
26 lines
348 B
PHP
26 lines
348 B
PHP
<?php namespace FireflyIII\Events;
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
/**
|
|
* Class JournalDeleted
|
|
*
|
|
* @codeCoverageIgnore
|
|
* @package FireflyIII\Events
|
|
*/
|
|
class JournalDeleted extends Event
|
|
{
|
|
|
|
use SerializesModels;
|
|
|
|
/**
|
|
* Create a new event instance.
|
|
*
|
|
*/
|
|
public function __construct()
|
|
{
|
|
//
|
|
}
|
|
|
|
}
|