mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-09-02 13:21:02 +00:00
Full rewrite of the installer (incl. the finish step), self-update pipeline, settings store, cron webhook, dashboard/bootstrap surface, environment manager, wizard login, config endpoint and shared helpers. Byte-compatible public interfaces and observable behavior, including documented legacy quirks; verified by the pilot behavioral suite and the full test suite.
25 lines
544 B
PHP
25 lines
544 B
PHP
<?php
|
|
|
|
namespace App\Platform\Operations\Events;
|
|
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
|
|
|
/**
|
|
* Raised once an update has been applied and the version setting re-stamped.
|
|
*
|
|
* Carries both sides of the jump so listeners can tell what changed.
|
|
*/
|
|
class UpdateFinished
|
|
{
|
|
use Dispatchable;
|
|
|
|
/**
|
|
* @param string $old the version that was running before the update
|
|
* @param string $new the version that is now installed
|
|
*/
|
|
public function __construct(
|
|
public $old,
|
|
public $new,
|
|
) {}
|
|
}
|