16 lines
374 B
PHP
16 lines
374 B
PHP
<?php
|
|
|
|
namespace MailPoet\Statistics;
|
|
|
|
use MailPoet\Doctrine\Repository;
|
|
use MailPoet\Entities\StatisticsWooCommercePurchaseEntity;
|
|
|
|
/**
|
|
* @extends Repository<StatisticsWooCommercePurchaseEntity>
|
|
*/
|
|
class StatisticsWooCommercePurchasesRepository extends Repository {
|
|
protected function getEntityClassName() {
|
|
return StatisticsWooCommercePurchaseEntity::class;
|
|
}
|
|
}
|