Files
InvoiceShelf/app/Events/UpdateFinished.php
Darko Gjorgjijoski 6b80b5f48d Change namespace
2024-01-27 23:53:20 +01:00

26 lines
360 B
PHP

<?php
namespace InvoiceShelf\Events;
use Illuminate\Foundation\Events\Dispatchable;
class UpdateFinished
{
use Dispatchable;
public $new;
public $old;
/**
* Create a new event instance.
*
* @return void
*/
public function __construct($old, $new)
{
$this->old = $old;
$this->new = $new;
}
}