Files
piratepoet/mailpoet/lib/Newsletter/NewsletterPostsRepository.php
Jan Jakes 9f790efbf0 Move plugin files to a subfolder
[MAILPOET-3988]
2022-01-18 15:30:22 +01:00

16 lines
314 B
PHP

<?php
namespace MailPoet\Newsletter;
use MailPoet\Doctrine\Repository;
use MailPoet\Entities\NewsletterPostEntity;
/**
* @extends Repository<NewsletterPostEntity>
*/
class NewsletterPostsRepository extends Repository {
protected function getEntityClassName() {
return NewsletterPostEntity::class;
}
}