File "NewsletterPostsRepository.php"

Full Path: /home/warrior1/public_html/plugins/mailpoet/lib/Newsletter/NewsletterPostsRepository.php
File size: 347 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace MailPoet\Newsletter;

if (!defined('ABSPATH')) exit;


use MailPoet\Doctrine\Repository;
use MailPoet\Entities\NewsletterPostEntity;

/**
 * @extends Repository<NewsletterPostEntity>
 */
class NewsletterPostsRepository extends Repository {
  protected function getEntityClassName() {
    return NewsletterPostEntity::class;
  }
}