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