mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-12-18 20:38:57 +00:00
22 lines
277 B
PHP
22 lines
277 B
PHP
|
|
<?php namespace FireflyIII\Events;
|
||
|
|
|
||
|
|
use FireflyIII\Events\Event;
|
||
|
|
|
||
|
|
use Illuminate\Queue\SerializesModels;
|
||
|
|
|
||
|
|
class JournalDeleted extends Event {
|
||
|
|
|
||
|
|
use SerializesModels;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Create a new event instance.
|
||
|
|
*
|
||
|
|
* @return void
|
||
|
|
*/
|
||
|
|
public function __construct()
|
||
|
|
{
|
||
|
|
//
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|