Files
crater/app/Events/UpdateFinished.php
Mohit Panjwani 89ee58590c build version 400
2020-12-02 17:54:08 +05:30

26 lines
356 B
PHP

<?php
namespace Crater\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;
}
}