17 lines
368 B
PHP
17 lines
368 B
PHP
<?php
|
|||
|
|
|
||
|
|
namespace Modules\Core\Localization\Events;
|
||
|
|
|
||
|
|
use Spatie\TranslationLoader\LanguageLine;
|
||
|
|
|
||
|
|
class TranslationUpdated
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* @param array{group: string, key: string, text: array} $old Snapshot before the update.
|
||
|
|
*/
|
||
|
|
public function __construct(
|
||
|
|
public readonly LanguageLine $languageLine,
|
||
|
|
public readonly array $old,
|
||
|
|
) {}
|
||
|
|
}
|