Files
piratepoet/lib/Settings/SettingsRepository.php
Jan Jakeš 0d04df570c Add SettingEntity and SettingsRepository
[MAILPOET-2436]
2019-11-06 16:32:32 +00:00

21 lines
624 B
PHP

<?php
namespace MailPoet\Settings;
use MailPoet\Doctrine\Repository;
use MailPoet\Entities\SettingEntity;
/**
* @method SettingEntity[] findBy(array $criteria, array $order_by = null, int $limit = null, int $offset = null)
* @method SettingEntity|null findOneBy(array $criteria, array $order_by = null)
* @method SettingEntity|null findOneById(mixed $id)
* @method SettingEntity[] findAll()
* @method void persist(SettingEntity $entity)
* @method void remove(SettingEntity $entity)
*/
class SettingsRepository extends Repository {
protected function getEntityClassName() {
return SettingEntity::class;
}
}