mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-26 02:40:43 -06:00
33 lines
543 B
PHP
33 lines
543 B
PHP
<?php
|
|
declare(strict_types = 1);
|
|
|
|
namespace FireflyIII\Events;
|
|
|
|
use FireflyIII\Models\TransactionJournal;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
/**
|
|
* Class TransactionJournalUpdated
|
|
*
|
|
* @package FireflyIII\Events
|
|
*/
|
|
class TransactionJournalUpdated extends Event
|
|
{
|
|
|
|
use SerializesModels;
|
|
|
|
public $journal;
|
|
|
|
/**
|
|
* Create a new event instance.
|
|
*
|
|
* @param TransactionJournal $journal
|
|
*/
|
|
public function __construct(TransactionJournal $journal)
|
|
{
|
|
//
|
|
$this->journal = $journal;
|
|
}
|
|
|
|
}
|