huge Laravel 10 upgrade

This commit is contained in:
HolgerHatGarKeineNode
2023-02-19 20:13:20 +01:00
parent 5c74f77beb
commit 12847f95f6
440 changed files with 46336 additions and 682 deletions

View File

@@ -0,0 +1,28 @@
<?php
namespace JoeDixon\Translation\Events;
use Illuminate\Foundation\Events\Dispatchable;
class TranslationAdded
{
use Dispatchable;
public $key;
public $group;
public $value;
public $language;
/**
* Create a new event instance.
*
* @return void
*/
public function __construct(string $language, string $group, string $key, string $value)
{
$this->language = $language;
$this->group = $group;
$this->key = $key;
$this->value = $value;
}
}