mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-29 11:43:26 +01:00
28 lines
530 B
PHP
28 lines
530 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Events;
|
||
|
|
||
|
use Illuminate\Foundation\Events\Dispatchable;
|
||
|
use Illuminate\Support\Facades\Log;
|
||
|
|
||
|
class storeIconsInDatabaseSettingChanged
|
||
|
{
|
||
|
use Dispatchable;
|
||
|
|
||
|
/**
|
||
|
* The new value of setting storeIconsInDatabase.
|
||
|
*/
|
||
|
public bool $newValue;
|
||
|
|
||
|
/**
|
||
|
* Create a new event instance.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function __construct(bool $newValue)
|
||
|
{
|
||
|
$this->newValue = $newValue;
|
||
|
Log::info('storeIconsInDatabaseSettingChanged event dispatched');
|
||
|
}
|
||
|
}
|