39
common/Admin/Appearance/Events/AppearanceSettingSaved.php
Executable file
39
common/Admin/Appearance/Events/AppearanceSettingSaved.php
Executable file
@@ -0,0 +1,39 @@
|
||||
<?php
|
||||
|
||||
namespace Common\Admin\Appearance\Events;
|
||||
|
||||
class AppearanceSettingSaved
|
||||
{
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $type;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $key;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $value;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $previousValue;
|
||||
|
||||
public function __construct(
|
||||
string $type,
|
||||
string $key,
|
||||
string $value,
|
||||
string $previousValue = null
|
||||
) {
|
||||
//
|
||||
$this->type = $type;
|
||||
$this->key = $key;
|
||||
$this->value = $value;
|
||||
$this->previousValue = $previousValue;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user