Files
core/src/Localization/Events/LanguageUpdated.php
T

17 lines
336 B
PHP
Raw Normal View History

<?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,
) {}
}