Add SegmentSubscriberRepository with basic methods

[MAILPOET-3077]
This commit is contained in:
Rostislav Wolny
2020-09-17 17:38:58 +02:00
committed by Veljko V
parent a1b3677223
commit 231b7eb2a9
4 changed files with 172 additions and 1 deletions

View File

@@ -105,4 +105,8 @@ class SegmentEntity {
public function getDynamicFilters() {
return $this->dynamicFilters;
}
public function isDynamic(): bool {
return $this->getType() === self::TYPE_DYNAMIC;
}
}