16 lines
326 B
PHP
16 lines
326 B
PHP
<?php
|
|
|
|
namespace MailPoet\Subscribers;
|
|
|
|
use MailPoet\Doctrine\Repository;
|
|
use MailPoet\Entities\SubscriberSegmentEntity;
|
|
|
|
/**
|
|
* @extends Repository<SubscriberSegmentEntity>
|
|
*/
|
|
class SubscriberSegmentRepository extends Repository {
|
|
protected function getEntityClassName() {
|
|
return SubscriberSegmentEntity::class;
|
|
}
|
|
}
|