Files
firefly-iii/app/Events/TransactionJournalUpdated.php

41 lines
761 B
PHP
Raw Normal View History

2016-02-05 12:08:25 +01:00
<?php
2016-05-20 11:59:54 +02:00
/**
* TransactionJournalUpdated.php
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
*/
2016-02-05 12:08:25 +01:00
declare(strict_types = 1);
namespace FireflyIII\Events;
2015-03-01 08:34:59 +01:00
use FireflyIII\Models\TransactionJournal;
use Illuminate\Queue\SerializesModels;
2015-05-03 12:58:55 +02:00
/**
2016-01-12 21:37:48 +01:00
* Class TransactionJournalUpdated
2015-05-03 12:58:55 +02:00
*
* @package FireflyIII\Events
*/
2016-01-12 21:37:48 +01:00
class TransactionJournalUpdated extends Event
2015-03-29 21:27:51 +02:00
{
2015-03-01 08:34:59 +01:00
2015-03-29 21:27:51 +02:00
use SerializesModels;
2015-03-01 08:34:59 +01:00
public $journal;
2015-03-29 21:27:51 +02:00
/**
* Create a new event instance.
*
2015-05-03 12:58:55 +02:00
* @param TransactionJournal $journal
2015-03-29 21:27:51 +02:00
*/
public function __construct(TransactionJournal $journal)
{
//
2015-03-01 08:34:59 +01:00
$this->journal = $journal;
2015-03-29 21:27:51 +02:00
}
2015-03-01 08:34:59 +01:00
}