mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-08-28 17:07:21 +00:00
34 lines
526 B
PHP
34 lines
526 B
PHP
<?php namespace FireflyIII\Handlers\Events;
|
|
|
|
use FireflyIII\Events\JournalDeleted;
|
|
use Illuminate\Contracts\Queue\ShouldBeQueued;
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
|
|
class JournalDeletedHandler
|
|
{
|
|
|
|
/**
|
|
* Create the event handler.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct()
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Handle the event.
|
|
*
|
|
* @param JournalDeleted $event
|
|
*
|
|
* @return void
|
|
*/
|
|
public function handle(JournalDeleted $event)
|
|
{
|
|
//
|
|
|
|
}
|
|
|
|
}
|