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