mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-20 04:24:23 -08:00
88b1da4260
* Fixed missing oauth tables during setup. * Cache settings Cache the setting to reduce unnecessary database calls
20 lines
303 B
PHP
20 lines
303 B
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
use App\Models\Setting;
|
|
|
|
class SettingSaved
|
|
{
|
|
public $settings;
|
|
|
|
/**
|
|
* Create a new event instance.
|
|
*
|
|
* @param \App\Models\Setting $settings
|
|
*/
|
|
public function __construct(Setting $settings)
|
|
{
|
|
$this->settings = $settings;
|
|
}
|
|
} |