phpvms/app/Models/Observers/JournalObserver.php

23 lines
356 B
PHP
Raw Normal View History

<?php
namespace App\Models\Observers;
use App\Models\Journal;
/**
* Class JournalObserver
*/
class JournalObserver
{
/**
* @param Journal $journal
2018-08-27 00:40:04 +08:00
*
* @throws \UnexpectedValueException
* @throws \InvalidArgumentException
*/
public function creating(Journal $journal): void
{
$journal->balance = 0;
}
}