mirror of
https://github.com/koel/koel
synced 2024-11-14 16:37:28 +00:00
20 lines
413 B
PHP
20 lines
413 B
PHP
<?php
|
|
|
|
namespace App\Repositories;
|
|
|
|
use App\Models\Setting;
|
|
|
|
/** @extends Repository<Setting> */
|
|
class SettingRepository extends Repository
|
|
{
|
|
/** @return array<mixed> */
|
|
public function getAllAsKeyValueArray(): array
|
|
{
|
|
return $this->modelClass::query()->pluck('value', 'key')->toArray();
|
|
}
|
|
|
|
public function getByKey(string $key): mixed
|
|
{
|
|
return Setting::get($key);
|
|
}
|
|
}
|