17 lines
336 B
PHP
17 lines
336 B
PHP
<?php
|
|
|
|
namespace Modules\Core\Localization\Events;
|
|
|
|
use Lunar\Models\Language;
|
|
|
|
class LanguageUpdated
|
|
{
|
|
/**
|
|
* @param array{code: string} $old Snapshot of watched attributes before the update.
|
|
*/
|
|
public function __construct(
|
|
public readonly Language $language,
|
|
public readonly array $old,
|
|
) {}
|
|
}
|