|
1 | 1 | services:
|
| 2 | + PhpList\Core\Domain\Analytics\Repository\LinkTrackRepository: |
| 3 | + parent: PhpList\Core\Domain\Common\Repository\AbstractRepository |
| 4 | + arguments: |
| 5 | + - PhpList\Core\Domain\Analytics\Model\LinkTrack |
| 6 | + PhpList\Core\Domain\Analytics\Repository\UserMessageViewRepository: |
| 7 | + parent: PhpList\Core\Domain\Common\Repository\AbstractRepository |
| 8 | + arguments: |
| 9 | + - PhpList\Core\Domain\Analytics\Model\UserMessageView |
| 10 | + PhpList\Core\Domain\Analytics\Repository\LinkTrackUmlClickRepository: |
| 11 | + parent: PhpList\Core\Domain\Common\Repository\AbstractRepository |
| 12 | + arguments: |
| 13 | + - PhpList\Core\Domain\Analytics\Model\LinkTrackUmlClick |
| 14 | + |
| 15 | + |
2 | 16 | PhpList\Core\Domain\Configuration\Repository\ConfigRepository:
|
3 | 17 | parent: PhpList\Core\Domain\Common\Repository\AbstractRepository
|
4 | 18 | arguments:
|
5 | 19 | - PhpList\Core\Domain\Configuration\Model\Config
|
6 |
| - |
7 | 20 | PhpList\Core\Domain\Configuration\Repository\EventLogRepository:
|
8 | 21 | parent: PhpList\Core\Domain\Common\Repository\AbstractRepository
|
9 | 22 | arguments:
|
10 | 23 | - PhpList\Core\Domain\Configuration\Model\EventLog
|
11 | 24 |
|
| 25 | + |
12 | 26 | PhpList\Core\Domain\Identity\Repository\AdministratorRepository:
|
13 | 27 | parent: PhpList\Core\Domain\Common\Repository\AbstractRepository
|
14 | 28 | arguments:
|
15 | 29 | - PhpList\Core\Domain\Identity\Model\Administrator
|
16 | 30 | - Doctrine\ORM\Mapping\ClassMetadata\ClassMetadata
|
17 | 31 | - PhpList\Core\Security\HashGenerator
|
18 |
| - |
19 | 32 | PhpList\Core\Domain\Identity\Repository\AdminAttributeValueRepository:
|
20 | 33 | parent: PhpList\Core\Domain\Common\Repository\AbstractRepository
|
21 | 34 | arguments:
|
22 | 35 | - PhpList\Core\Domain\Identity\Model\AdminAttributeValue
|
23 |
| - |
24 | 36 | PhpList\Core\Domain\Identity\Repository\AdminAttributeDefinitionRepository:
|
25 | 37 | parent: PhpList\Core\Domain\Common\Repository\AbstractRepository
|
26 | 38 | arguments:
|
27 | 39 | - PhpList\Core\Domain\Identity\Model\AdminAttributeDefinition
|
28 |
| - |
29 | 40 | PhpList\Core\Domain\Identity\Repository\AdministratorTokenRepository:
|
30 | 41 | parent: PhpList\Core\Domain\Common\Repository\AbstractRepository
|
31 | 42 | arguments:
|
32 | 43 | - PhpList\Core\Domain\Identity\Model\AdministratorToken
|
33 |
| - |
34 | 44 | PhpList\Core\Domain\Identity\Repository\AdminPasswordRequestRepository:
|
35 | 45 | parent: PhpList\Core\Domain\Common\Repository\AbstractRepository
|
36 | 46 | arguments:
|
37 | 47 | - PhpList\Core\Domain\Identity\Model\AdminPasswordRequest
|
38 | 48 |
|
| 49 | + |
39 | 50 | PhpList\Core\Domain\Subscription\Repository\SubscriberListRepository:
|
40 | 51 | parent: PhpList\Core\Domain\Common\Repository\AbstractRepository
|
41 | 52 | arguments:
|
42 | 53 | - PhpList\Core\Domain\Subscription\Model\SubscriberList
|
43 |
| - |
44 | 54 | PhpList\Core\Domain\Subscription\Repository\SubscriberRepository:
|
45 | 55 | parent: PhpList\Core\Domain\Common\Repository\AbstractRepository
|
46 | 56 | arguments:
|
47 | 57 | - PhpList\Core\Domain\Subscription\Model\Subscriber
|
48 |
| - |
49 | 58 | PhpList\Core\Domain\Subscription\Repository\SubscriberAttributeValueRepository:
|
50 | 59 | parent: PhpList\Core\Domain\Common\Repository\AbstractRepository
|
51 | 60 | arguments:
|
52 | 61 | - PhpList\Core\Domain\Subscription\Model\SubscriberAttributeValue
|
53 |
| - |
54 | 62 | PhpList\Core\Domain\Subscription\Repository\SubscriberAttributeDefinitionRepository:
|
55 | 63 | parent: PhpList\Core\Domain\Common\Repository\AbstractRepository
|
56 | 64 | arguments:
|
57 | 65 | - PhpList\Core\Domain\Subscription\Model\SubscriberAttributeDefinition
|
58 |
| - |
59 | 66 | PhpList\Core\Domain\Subscription\Repository\SubscriptionRepository:
|
60 | 67 | parent: PhpList\Core\Domain\Common\Repository\AbstractRepository
|
61 | 68 | arguments:
|
62 | 69 | - PhpList\Core\Domain\Subscription\Model\Subscription
|
| 70 | + PhpList\Core\Domain\Subscription\Repository\DynamicListAttrRepository: |
| 71 | + autowire: true |
| 72 | + arguments: |
| 73 | + $prefix: '%database_prefix%' |
| 74 | + PhpList\Core\Domain\Subscription\Repository\SubscriberHistoryRepository: |
| 75 | + parent: PhpList\Core\Domain\Common\Repository\AbstractRepository |
| 76 | + arguments: |
| 77 | + - PhpList\Core\Domain\Subscription\Model\SubscriberHistory |
| 78 | + PhpList\Core\Domain\Subscription\Repository\UserBlacklistRepository: |
| 79 | + parent: PhpList\Core\Domain\Common\Repository\AbstractRepository |
| 80 | + arguments: |
| 81 | + - PhpList\Core\Domain\Subscription\Model\UserBlacklist |
| 82 | + PhpList\Core\Domain\Subscription\Repository\UserBlacklistDataRepository: |
| 83 | + parent: PhpList\Core\Domain\Common\Repository\AbstractRepository |
| 84 | + arguments: |
| 85 | + - PhpList\Core\Domain\Subscription\Model\UserBlacklistData |
| 86 | + PhpList\Core\Domain\Subscription\Repository\SubscriberPageRepository: |
| 87 | + parent: PhpList\Core\Domain\Common\Repository\AbstractRepository |
| 88 | + arguments: |
| 89 | + - PhpList\Core\Domain\Subscription\Model\SubscribePage |
| 90 | + PhpList\Core\Domain\Subscription\Repository\SubscriberPageDataRepository: |
| 91 | + parent: PhpList\Core\Domain\Common\Repository\AbstractRepository |
| 92 | + arguments: |
| 93 | + - PhpList\Core\Domain\Subscription\Model\SubscribePageData |
| 94 | + |
63 | 95 |
|
64 | 96 | PhpList\Core\Domain\Messaging\Repository\MessageRepository:
|
65 | 97 | parent: PhpList\Core\Domain\Common\Repository\AbstractRepository
|
66 | 98 | arguments:
|
67 | 99 | - PhpList\Core\Domain\Messaging\Model\Message
|
68 |
| - |
69 | 100 | PhpList\Core\Domain\Messaging\Repository\TemplateRepository:
|
70 | 101 | parent: PhpList\Core\Domain\Common\Repository\AbstractRepository
|
71 | 102 | arguments:
|
72 | 103 | - PhpList\Core\Domain\Messaging\Model\Template
|
73 |
| - |
74 | 104 | PhpList\Core\Domain\Messaging\Repository\TemplateImageRepository:
|
75 | 105 | parent: PhpList\Core\Domain\Common\Repository\AbstractRepository
|
76 | 106 | arguments:
|
77 | 107 | - PhpList\Core\Domain\Messaging\Model\TemplateImage
|
78 |
| - |
79 | 108 | PhpList\Core\Domain\Messaging\Repository\UserMessageBounceRepository:
|
80 | 109 | parent: PhpList\Core\Domain\Common\Repository\AbstractRepository
|
81 | 110 | arguments:
|
82 | 111 | - PhpList\Core\Domain\Messaging\Model\UserMessageBounce
|
83 |
| - |
84 | 112 | PhpList\Core\Domain\Messaging\Repository\UserMessageForwardRepository:
|
85 | 113 | parent: PhpList\Core\Domain\Common\Repository\AbstractRepository
|
86 | 114 | arguments:
|
87 | 115 | - PhpList\Core\Domain\Messaging\Model\UserMessageForward
|
88 |
| - |
89 |
| - PhpList\Core\Domain\Analytics\Repository\LinkTrackRepository: |
90 |
| - parent: PhpList\Core\Domain\Common\Repository\AbstractRepository |
91 |
| - arguments: |
92 |
| - - PhpList\Core\Domain\Analytics\Model\LinkTrack |
93 |
| - |
94 |
| - PhpList\Core\Domain\Analytics\Repository\UserMessageViewRepository: |
95 |
| - parent: PhpList\Core\Domain\Common\Repository\AbstractRepository |
96 |
| - arguments: |
97 |
| - - PhpList\Core\Domain\Analytics\Model\UserMessageView |
98 |
| - |
99 |
| - PhpList\Core\Domain\Analytics\Repository\LinkTrackUmlClickRepository: |
100 |
| - parent: PhpList\Core\Domain\Common\Repository\AbstractRepository |
101 |
| - arguments: |
102 |
| - - PhpList\Core\Domain\Analytics\Model\LinkTrackUmlClick |
103 |
| - |
104 | 116 | PhpList\Core\Domain\Messaging\Repository\UserMessageRepository:
|
105 | 117 | parent: PhpList\Core\Domain\Common\Repository\AbstractRepository
|
106 | 118 | arguments:
|
107 | 119 | - PhpList\Core\Domain\Messaging\Model\UserMessage
|
108 |
| - |
109 |
| - PhpList\Core\Domain\Subscription\Repository\SubscriberHistoryRepository: |
110 |
| - parent: PhpList\Core\Domain\Common\Repository\AbstractRepository |
111 |
| - arguments: |
112 |
| - - PhpList\Core\Domain\Subscription\Model\SubscriberHistory |
113 |
| - |
114 | 120 | PhpList\Core\Domain\Messaging\Repository\ListMessageRepository:
|
115 | 121 | parent: PhpList\Core\Domain\Common\Repository\AbstractRepository
|
116 | 122 | arguments:
|
117 | 123 | - PhpList\Core\Domain\Messaging\Model\ListMessage
|
118 |
| - |
119 |
| - PhpList\Core\Domain\Subscription\Repository\UserBlacklistRepository: |
120 |
| - parent: PhpList\Core\Domain\Common\Repository\AbstractRepository |
121 |
| - arguments: |
122 |
| - - PhpList\Core\Domain\Subscription\Model\UserBlacklist |
123 |
| - |
124 |
| - PhpList\Core\Domain\Subscription\Repository\UserBlacklistDataRepository: |
125 |
| - parent: PhpList\Core\Domain\Common\Repository\AbstractRepository |
126 |
| - arguments: |
127 |
| - - PhpList\Core\Domain\Subscription\Model\UserBlacklistData |
128 |
| - |
129 |
| - PhpList\Core\Domain\Subscription\Repository\SubscriberPageRepository: |
130 |
| - parent: PhpList\Core\Domain\Common\Repository\AbstractRepository |
131 |
| - arguments: |
132 |
| - - PhpList\Core\Domain\Subscription\Model\SubscribePage |
133 |
| - |
134 |
| - PhpList\Core\Domain\Subscription\Repository\SubscriberPageDataRepository: |
135 |
| - parent: PhpList\Core\Domain\Common\Repository\AbstractRepository |
136 |
| - arguments: |
137 |
| - - PhpList\Core\Domain\Subscription\Model\SubscribePageData |
138 |
| - |
139 | 124 | PhpList\Core\Domain\Messaging\Repository\BounceRegexRepository:
|
140 | 125 | parent: PhpList\Core\Domain\Common\Repository\AbstractRepository
|
141 | 126 | arguments:
|
142 | 127 | - PhpList\Core\Domain\Messaging\Model\BounceRegex
|
143 |
| - |
144 | 128 | PhpList\Core\Domain\Messaging\Repository\BounceRepository:
|
145 | 129 | parent: PhpList\Core\Domain\Common\Repository\AbstractRepository
|
146 | 130 | arguments:
|
147 | 131 | - PhpList\Core\Domain\Messaging\Model\Bounce
|
148 |
| - |
149 | 132 | PhpList\Core\Domain\Messaging\Repository\BounceRegexBounceRepository:
|
150 | 133 | parent: PhpList\Core\Domain\Common\Repository\AbstractRepository
|
151 | 134 | arguments:
|
152 | 135 | - PhpList\Core\Domain\Messaging\Model\BounceRegex
|
153 |
| - |
154 | 136 | PhpList\Core\Domain\Messaging\Repository\SendProcessRepository:
|
155 | 137 | parent: PhpList\Core\Domain\Common\Repository\AbstractRepository
|
156 | 138 | arguments:
|
|
0 commit comments