Refactor dynamic segments listings to doctrine

[MAILPOET-3361]
This commit is contained in:
Pavel Dohnal
2021-01-08 10:44:02 +01:00
committed by Veljko V
parent 11c9c3cd93
commit 822550f3c0
6 changed files with 110 additions and 39 deletions

View File

@@ -0,0 +1,10 @@
<?php
namespace MailPoet\Segments\DynamicSegments;
use MailPoet\Entities\SegmentEntity;
use MailPoet\Segments\SegmentListingRepository;
class DynamicSegmentsListingRepository extends SegmentListingRepository {
protected $types = [SegmentEntity::TYPE_DYNAMIC];
}