30 lines
636 B

<?php
namespace core\repositories;
use core\entities\Settings;
class SettingsRepository
{
public function get($id): Settings
{
if (!$settings = Settings::findOne($id)) {
throw new NotFoundException('Setting is not found.');
}
return $settings;
}
public function save(Settings $settings): void
{
if (!$settings->save()) {
throw new \RuntimeException('Saving error.');
}
}
public function remove(Settings $settings): void
{
if (!$settings->delete()) {
throw new \RuntimeException('Removing error.');
}
}
}