Files
docker_dev/crater/app/Events/UpdateFinished.php
2025-09-20 16:11:47 +02:00

26 lines
354 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;
}
}