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
857 B

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