andWhere(['section' => $section])->andWhere(['key' => $key])->one()) { 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.'); } } }