Skip to content

Commit 2a13beb

Browse files
committed
ISSUE-345: update after core update
1 parent 6a6974a commit 2a13beb

File tree

71 files changed

+137
-138
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+137
-138
lines changed

config/services/builders.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,22 @@ services:
44
autoconfigure: true
55
public: false
66

7-
PhpList\Core\Domain\Service\Builder\MessageBuilder:
7+
PhpList\Core\Domain\Messaging\Service\Builder\MessageBuilder:
88
autowire: true
99
autoconfigure: true
1010

11-
PhpList\Core\Domain\Service\Builder\MessageFormatBuilder:
11+
PhpList\Core\Domain\Messaging\Service\Builder\MessageFormatBuilder:
1212
autowire: true
1313
autoconfigure: true
1414

15-
PhpList\Core\Domain\Service\Builder\MessageScheduleBuilder:
15+
PhpList\Core\Domain\Messaging\Service\Builder\MessageScheduleBuilder:
1616
autowire: true
1717
autoconfigure: true
1818

19-
PhpList\Core\Domain\Service\Builder\MessageContentBuilder:
19+
PhpList\Core\Domain\Messaging\Service\Builder\MessageContentBuilder:
2020
autowire: true
2121
autoconfigure: true
2222

23-
PhpList\Core\Domain\Service\Builder\MessageOptionsBuilder:
23+
PhpList\Core\Domain\Messaging\Service\Builder\MessageOptionsBuilder:
2424
autowire: true
2525
autoconfigure: true

config/services/managers.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,34 +4,34 @@ services:
44
autoconfigure: true
55
public: false
66

7-
PhpList\Core\Domain\Service\Manager\SubscriberManager:
7+
PhpList\Core\Domain\Subscription\Service\SubscriberManager:
88
autowire: true
99
autoconfigure: true
1010

11-
PhpList\Core\Domain\Service\Manager\SessionManager:
11+
PhpList\Core\Domain\Identity\Service\SessionManager:
1212
autowire: true
1313
autoconfigure: true
1414

15-
PhpList\Core\Domain\Service\Manager\SubscriberListManager:
15+
PhpList\Core\Domain\Subscription\Service\SubscriberListManager:
1616
autowire: true
1717
autoconfigure: true
1818

19-
PhpList\Core\Domain\Service\Manager\SubscriptionManager:
19+
PhpList\Core\Domain\Subscription\Service\SubscriptionManager:
2020
autowire: true
2121
autoconfigure: true
2222

23-
PhpList\Core\Domain\Service\Manager\MessageManager:
23+
PhpList\Core\Domain\Messaging\Service\MessageManager:
2424
autowire: true
2525
autoconfigure: true
2626

27-
PhpList\Core\Domain\Service\Manager\TemplateManager:
27+
PhpList\Core\Domain\Messaging\Service\TemplateManager:
2828
autowire: true
2929
autoconfigure: true
3030

31-
PhpList\Core\Domain\Service\Manager\TemplateImageManager:
31+
PhpList\Core\Domain\Messaging\Service\TemplateImageManager:
3232
autowire: true
3333
autoconfigure: true
3434

35-
PhpList\Core\Domain\Service\Manager\AdministratorManager:
35+
PhpList\Core\Domain\Udentity\Service\AdministratorManager:
3636
autowire: true
3737
autoconfigure: true

src/Controller/AdministratorController.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
namespace PhpList\RestBundle\Controller;
66

77
use OpenApi\Attributes as OA;
8-
use PhpList\Core\Domain\Model\Identity\Administrator;
9-
use PhpList\Core\Domain\Service\Manager\AdministratorManager;
8+
use PhpList\Core\Domain\Identity\Model\Administrator;
9+
use PhpList\Core\Domain\Identity\Service\AdministratorManager;
1010
use PhpList\Core\Security\Authentication;
1111
use PhpList\RestBundle\Entity\Request\CreateAdministratorRequest;
1212
use PhpList\RestBundle\Entity\Request\UpdateAdministratorRequest;

src/Controller/BaseController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
namespace PhpList\RestBundle\Controller;
66

7-
use PhpList\Core\Domain\Model\Identity\Administrator;
7+
use PhpList\Core\Domain\Identity\Model\Administrator;
88
use PhpList\Core\Security\Authentication;
99
use PhpList\RestBundle\Validator\RequestValidator;
1010
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;

src/Controller/CampaignController.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
namespace PhpList\RestBundle\Controller;
66

77
use OpenApi\Attributes as OA;
8-
use PhpList\Core\Domain\Model\Dto\Filter\MessageFilter;
9-
use PhpList\Core\Domain\Model\Messaging\Message;
10-
use PhpList\Core\Domain\Service\Manager\MessageManager;
8+
use PhpList\Core\Domain\Messaging\Model\Filter\MessageFilter;
9+
use PhpList\Core\Domain\Messaging\Model\Message;
10+
use PhpList\Core\Domain\Messaging\Service\MessageManager;
1111
use PhpList\Core\Security\Authentication;
1212
use PhpList\RestBundle\Entity\Request\CreateMessageRequest;
1313
use PhpList\RestBundle\Entity\Request\UpdateMessageRequest;

src/Controller/ListController.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
namespace PhpList\RestBundle\Controller;
66

77
use OpenApi\Attributes as OA;
8-
use PhpList\Core\Domain\Model\Subscription\SubscriberList;
9-
use PhpList\Core\Domain\Service\Manager\SubscriberListManager;
8+
use PhpList\Core\Domain\Subscription\Model\SubscriberList;
9+
use PhpList\Core\Domain\Subscription\Service\SubscriberListManager;
1010
use PhpList\Core\Security\Authentication;
1111
use PhpList\RestBundle\Entity\Request\CreateSubscriberListRequest;
1212
use PhpList\RestBundle\Serializer\SubscriberListNormalizer;

src/Controller/ListMembersController.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
namespace PhpList\RestBundle\Controller;
66

77
use OpenApi\Attributes as OA;
8-
use PhpList\Core\Domain\Model\Dto\Filter\SubscriberFilter;
9-
use PhpList\Core\Domain\Model\Subscription\Subscriber;
10-
use PhpList\Core\Domain\Model\Subscription\SubscriberList;
8+
use PhpList\Core\Domain\Subscription\Model\Filter\SubscriberFilter;
9+
use PhpList\Core\Domain\Subscription\Model\Subscriber;
10+
use PhpList\Core\Domain\Subscription\Model\SubscriberList;
1111
use PhpList\Core\Security\Authentication;
1212
use PhpList\RestBundle\Serializer\SubscriberNormalizer;
1313
use PhpList\RestBundle\Service\Provider\PaginatedDataProvider;

src/Controller/SessionController.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
namespace PhpList\RestBundle\Controller;
66

77
use OpenApi\Attributes as OA;
8-
use PhpList\Core\Domain\Model\Identity\AdministratorToken;
9-
use PhpList\Core\Domain\Service\Manager\SessionManager;
8+
use PhpList\Core\Domain\Identity\Model\AdministratorToken;
9+
use PhpList\Core\Domain\Identity\Service\SessionManager;
1010
use PhpList\Core\Security\Authentication;
1111
use PhpList\RestBundle\Entity\Request\CreateSessionRequest;
1212
use PhpList\RestBundle\Serializer\AdministratorTokenNormalizer;

src/Controller/SubscriberAttributeDefinitionController.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
namespace PhpList\RestBundle\Controller;
66

77
use OpenApi\Attributes as OA;
8-
use PhpList\Core\Domain\Model\Subscription\SubscriberAttributeDefinition;
9-
use PhpList\Core\Domain\Service\Manager\AttributeDefinitionManager;
8+
use PhpList\Core\Domain\Subscription\Model\SubscriberAttributeDefinition;
9+
use PhpList\Core\Domain\Subscription\Service\AttributeDefinitionManager;
1010
use PhpList\Core\Security\Authentication;
1111
use PhpList\RestBundle\Entity\Request\CreateAttributeDefinitionRequest;
1212
use PhpList\RestBundle\Entity\Request\UpdateAttributeDefinitionRequest;

src/Controller/SubscriberController.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
namespace PhpList\RestBundle\Controller;
66

77
use OpenApi\Attributes as OA;
8-
use PhpList\Core\Domain\Model\Subscription\Subscriber;
9-
use PhpList\Core\Domain\Service\Manager\SubscriberManager;
8+
use PhpList\Core\Domain\Subscription\Model\Subscriber;
9+
use PhpList\Core\Domain\Subscription\Service\SubscriberManager;
1010
use PhpList\Core\Security\Authentication;
1111
use PhpList\RestBundle\Entity\Request\CreateSubscriberRequest;
1212
use PhpList\RestBundle\Entity\Request\UpdateSubscriberRequest;

0 commit comments

Comments
 (0)