Files
piratepoet/lib/Features/FeatureFlagsRepository.php
Pavel Dohnal 10476ebd8f Create Feature Flags Repository
[MAILPOET-2219]
2019-08-28 12:48:22 -04:00

19 lines
485 B
PHP

<?php
namespace MailPoet\Settings;
use MailPoet\Entities\FeatureFlagEntity;
use MailPoet\Doctrine\Repository;
/**
* @method FeatureFlagEntity[] findAll()
* @method FeatureFlagEntity|null findOneBy(array $criteria, array $order_by = null)
* @method void persist(FeatureFlagEntity $entity)
* @method void remove(FeatureFlagEntity $entity)
*/
class FeatureFlagsRepository extends Repository {
protected function getEntityClassName() {
return FeatureFlagEntity::class;
}
}