Track
4 days ago
GATracking.php
6 months ago
StatisticsBouncesRepository.php
3 years ago
StatisticsClicksRepository.php
2 years ago
StatisticsFormsRepository.php
3 years ago
StatisticsNewslettersRepository.php
1 year ago
StatisticsOpensRepository.php
3 days ago
StatisticsUnsubscribesRepository.php
2 months ago
StatisticsWooCommercePurchasesRepository.php
1 year ago
UnsubscribeReasonTracker.php
2 months ago
UserAgentsRepository.php
1 year ago
index.php
3 years ago
StatisticsBouncesRepository.php
19 lines
| 1 | <?php declare(strict_types = 1); |
| 2 | |
| 3 | namespace MailPoet\Statistics; |
| 4 | |
| 5 | if (!defined('ABSPATH')) exit; |
| 6 | |
| 7 | |
| 8 | use MailPoet\Doctrine\Repository; |
| 9 | use MailPoet\Entities\StatisticsBounceEntity; |
| 10 | |
| 11 | /** |
| 12 | * @extends Repository<StatisticsBounceEntity> |
| 13 | */ |
| 14 | class StatisticsBouncesRepository extends Repository { |
| 15 | protected function getEntityClassName(): string { |
| 16 | return StatisticsBounceEntity::class; |
| 17 | } |
| 18 | } |
| 19 |