You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
823 B

6 years ago
<?php
namespace common\modules\banners\repositories;
use common\modules\banners\entities\Banner;
use core\repositories\NotFoundException;
3 years ago
use RuntimeException;
use yii\db\StaleObjectException;
6 years ago
class BannerRepository
{
public function get($id): Banner
{
if (!$banner = Banner::findOne($id)) {
throw new NotFoundException('Banner is not found.');
}
return $banner;
}
public function save(Banner $banner): void
{
if (!$banner->save()) {
3 years ago
throw new RuntimeException('Saving error.');
6 years ago
}
}
3 years ago
/**
* @param Banner $banner
* @throws StaleObjectException
*/
6 years ago
public function remove(Banner $banner): void
{
if (!$banner->delete()) {
3 years ago
throw new RuntimeException('Removing error.');
6 years ago
}
}
}