firefly-iii/app/Events/JournalSaved.php

31 lines
512 B
PHP
Raw Normal View History

2015-03-01 01:34:59 -06:00
<?php namespace FireflyIII\Events;
use FireflyIII\Models\TransactionJournal;
use Illuminate\Queue\SerializesModels;
2015-05-03 05:58:55 -05:00
/**
* Class JournalSaved
*
2015-05-10 01:08:07 -05:00
* @codeCoverageIgnore
2015-05-03 05:58:55 -05:00
* @package FireflyIII\Events
*/
2015-03-29 14:27:51 -05:00
class JournalSaved extends Event
{
2015-03-01 01:34:59 -06:00
2015-03-29 14:27:51 -05:00
use SerializesModels;
2015-03-01 01:34:59 -06:00
public $journal;
2015-03-29 14:27:51 -05:00
/**
* Create a new event instance.
*
2015-05-03 05:58:55 -05:00
* @param TransactionJournal $journal
2015-03-29 14:27:51 -05:00
*/
public function __construct(TransactionJournal $journal)
{
//
2015-03-01 01:34:59 -06:00
$this->journal = $journal;
2015-03-29 14:27:51 -05:00
}
2015-03-01 01:34:59 -06:00
}