Skip to content

Commit 0798e60

Browse files
author
Constantin Galbenu
committed
renamed to dudulina
1 parent 998fa47 commit 0798e60

File tree

184 files changed

+780
-780
lines changed

Some content is hidden

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

184 files changed

+780
-780
lines changed

DOCUMENTATION.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ Those events are used to rehydrate the write models and to update the read model
1111
## The Commands ##
1212
The instructions to update application's state are encapsulated in commands, plain PHP objects or Value Objects in DDD.
1313
Commands are sent to Aggregates, the write models. The command must contain at least the Aggregate's ID so that the library can identify the right Aggregate instance.
14-
All commands must implement the `\Gica\Cqrs\Command` interface. This interface has only one method: `getAggregateId()`; This is required for the automated tools to discover command handlers.
14+
All commands must implement the `\Dudulina\Command` interface. This interface has only one method: `getAggregateId()`; This is required for the automated tools to discover command handlers.
1515
An example of a command is this:
1616
```php
1717

18-
use \Gica\Cqrs\Command;
18+
use \Dudulina\Command;
1919

2020
class ImportantCommand implements Command
2121
{
@@ -88,7 +88,7 @@ The `Metadata` is optional and contains the Aggregate's ID, Aggregate's class na
8888
## The Read Models = The Projections ##
8989
After the Aggregate generates events, these events are sent to the subscribed Read Models.
9090
The Read Models are classes that listen on the events and update themselves accordingly. They have one or more event handler methods.
91-
If you want a Read Model to be recreated by a library tool (`\Gica\Cqrs\ReadModel\ReadModelRecreator`), then the Read Model must implement the `\Gica\Cqrs\ReadModel\ReadModelInterface` interface.
91+
If you want a Read Model to be recreated by a library tool (`\Dudulina\ReadModel\ReadModelRecreator`), then the Read Model must implement the `\Dudulina\ReadModel\ReadModelInterface` interface.
9292
### Order of event delivery ###
9393
When an event is generated, all Read Models are notified, in the order of their dependencies.
9494
That is, if ReadModel2 depends of ReadModel1, the ReadModel2 receives the event after ReadModel1 processes it.
@@ -220,7 +220,7 @@ class CommandHandlerSubscriber extends CommandSubscriberByMap
220220
}
221221
```
222222
The map has the key as the Event class and the value as command handler (Aggregate class + method name).
223-
This map (the file that contain the `CommandHandlerSubscriber` class) is constructed automatically by a tool, `\Gica\Cqrs\CodeGeneration\CommandHandlersMapCodeGenerator`, that scans all the files in the `Write` folder in the Domain layer and finds all the command handlers.
223+
This map (the file that contain the `CommandHandlerSubscriber` class) is constructed automatically by a tool, `\Dudulina\CodeGeneration\CommandHandlersMapCodeGenerator`, that scans all the files in the `Write` folder in the Domain layer and finds all the command handlers.
224224
Every time you add a new Command and a new command handler, you must run this tool to update the mapping between Commands and command handlers.
225225
There is possibility that more than one command handler exists for a Command. The tool can and will detect this.
226226

@@ -306,7 +306,7 @@ The tool must be run after any event processor is created.
306306
### Event scheduling ###
307307

308308
There is the possibility that the an `Aggregate` wants to postpone an event. This can be done if the `Aggregate` `yields`
309-
an `Event` that implements `\Gica\Cqrs\Event\ScheduledEvent`. The event class must implement two methods:
309+
an `Event` that implements `\Dudulina\Event\ScheduledEvent`. The event class must implement two methods:
310310

311311
```
312312
public function getFireDate():\DateTimeImmutable //returns the date that the event will be fired
@@ -319,13 +319,13 @@ public function getMessageId(); //returns the unique ID of the event
319319
```
320320

321321
Scheduled events could be processed in a [cron job](https://github.com/xprt64/todosample-cqrs-es/blob/master/deploy/cron).
322-
See [\Gica\Cqrs\Scheduling\ScheduledEventsPlayer](https://github.com/xprt64/cqrs-es/blob/master/src/Gica/Cqrs/Scheduling/ScheduledEventsPlayer.php) for more informations.
322+
See [\Dudulina\Scheduling\ScheduledEventsPlayer](https://github.com/xprt64/cqrs-es/blob/master/src/Gica/Cqrs/Scheduling/ScheduledEventsPlayer.php) for more informations.
323323
See a [demo here](https://github.com/xprt64/todosample-cqrs-es/blob/master/bin/cron/play_scheduled_events.php).
324324

325325
### Command scheduling ###
326326

327-
The `Aggregate` can schedule commands. If the `yielded` message is an instance of `\Gica\Cqrs\Scheduling\ScheduledCommand` ([see interface here](https://github.com/xprt64/cqrs-es/blob/master/src/Gica/Cqrs/Scheduling/ScheduledMessage.php)) then
328-
that command will be scheduled to be dispatched at the specified date by [\Gica\Cqrs\Scheduling\ScheduledMessage::getFireDate](https://github.com/xprt64/cqrs-es/blob/master/src/Gica/Cqrs/Scheduling/ScheduledMessage.php).
327+
The `Aggregate` can schedule commands. If the `yielded` message is an instance of `\Dudulina\Scheduling\ScheduledCommand` ([see interface here](https://github.com/xprt64/cqrs-es/blob/master/src/Gica/Cqrs/Scheduling/ScheduledMessage.php)) then
328+
that command will be scheduled to be dispatched at the specified date by [\Dudulina\Scheduling\ScheduledMessage::getFireDate](https://github.com/xprt64/cqrs-es/blob/master/src/Gica/Cqrs/Scheduling/ScheduledMessage.php).
329329

330-
Scheduled commands could be processed in a [cron job](https://github.com/xprt64/todosample-cqrs-es/blob/master/deploy/cron). See [\Gica\Cqrs\Scheduling\ScheduledCommandsDispatcher](https://github.com/xprt64/cqrs-es/blob/master/src/Gica/Cqrs/Scheduling/ScheduledCommandsDispatcher.php) for more informations.
330+
Scheduled commands could be processed in a [cron job](https://github.com/xprt64/todosample-cqrs-es/blob/master/deploy/cron). See [\Dudulina\Scheduling\ScheduledCommandsDispatcher](https://github.com/xprt64/cqrs-es/blob/master/src/Gica/Cqrs/Scheduling/ScheduledCommandsDispatcher.php) for more informations.
331331
See a [demo here](https://github.com/xprt64/todosample-cqrs-es/blob/master/bin/cron/play_scheduled_commands.php).

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ This is a non-obtrusive CQRS + Event Sourcing library that helps building comple
1414

1515
No inheritance! Your domain code remains clean and infrastructure/framework agnostic as should be.
1616

17-
- `\Gica\Cqrs\Event` for each domain event; no methods, it is just a marker interface; the domain events need to be detected by the automated code generation tools;
17+
- `\Dudulina\Event` for each domain event; no methods, it is just a marker interface; the domain events need to be detected by the automated code generation tools;
1818

19-
- `\Gica\Cqrs\Command` for each domain command; only one method, `getAggregateId()`; it is needed by the command dispatcher to know that Aggregate instance to load from Repository
19+
- `\Dudulina\Command` for each domain command; only one method, `getAggregateId()`; it is needed by the command dispatcher to know that Aggregate instance to load from Repository
2020

21-
- `\Gica\Cqrs\ReadModel\ReadModelInterface` for each read model; this is required only if you use the `ReadModelRecreator` to rebuild your read-models (projections)
21+
- `\Dudulina\ReadModel\ReadModelInterface` for each read model; this is required only if you use the `ReadModelRecreator` to rebuild your read-models (projections)
2222

2323
Even if only a few interfaces need to be implemented, you could loose the coupling to the library even more.
2424
You could define and use your own domain interfaces and only that interfaces would inherit from the library interfaces.

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "xprt64/cqrs-es",
2+
"name": "xprt64/dudulina",
33
"description": "CQRS with Event Sourcing mini framework for PHP",
44
"minimum-stability": "stable",
55
"license": "proprietary",
@@ -34,12 +34,12 @@
3434
},
3535
"autoload": {
3636
"psr-4": {
37-
"Gica\\Cqrs\\": "src/Gica/Cqrs/"
37+
"Dudulina\\": "src/Dudulina/"
3838
}
3939
},
4040
"autoload-dev": {
4141
"psr-4": {
42-
"tests\\Gica\\": "tests/Gica/"
42+
"tests\\Dudulina\\": "tests/Dudulina/"
4343
}
4444
}
4545
}

src/Gica/Cqrs/Aggregate/AggregateRepository.php renamed to src/Dudulina/Aggregate/AggregateRepository.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
* Copyright (c) 2016 Constantin Galbenu <[email protected]> *
44
******************************************************************************/
55

6-
namespace Gica\Cqrs\Aggregate;
6+
namespace Dudulina\Aggregate;
77

88

9-
use Gica\Cqrs\Event\EventsApplier\EventsApplierOnAggregate;
10-
use Gica\Cqrs\Event\EventWithMetaData;
11-
use Gica\Cqrs\EventStore;
12-
use Gica\Cqrs\EventStore\AggregateEventStream;
9+
use Dudulina\Event\EventsApplier\EventsApplierOnAggregate;
10+
use Dudulina\Event\EventWithMetaData;
11+
use Dudulina\EventStore;
12+
use Dudulina\EventStore\AggregateEventStream;
1313

1414
class AggregateRepository
1515
{

src/Gica/Cqrs/Aggregate/CodeAnalysis/ListenerClassValidator/OnlyAggregateByName.php renamed to src/Dudulina/Aggregate/CodeAnalysis/ListenerClassValidator/OnlyAggregateByName.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Copyright (c) 2017 Constantin Galbenu <[email protected]> *
44
******************************************************************************/
55

6-
namespace Gica\Cqrs\Aggregate\CodeAnalysis\ListenerClassValidator;
6+
namespace Dudulina\Aggregate\CodeAnalysis\ListenerClassValidator;
77

88

99
use Gica\CodeAnalysis\MethodListenerDiscovery\ListenerClassValidator;

src/Gica/Cqrs/CodeGeneration/AggregateEventApplyHandlerValidator.php renamed to src/Dudulina/CodeGeneration/AggregateEventApplyHandlerValidator.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
* Copyright (c) 2017 Constantin Galbenu <[email protected]> *
44
******************************************************************************/
55

6-
namespace Gica\Cqrs\CodeGeneration;
6+
namespace Dudulina\CodeGeneration;
77

88
use Gica\CodeAnalysis\AggregateEventHandlersValidator;
9-
use Gica\Cqrs\Aggregate\CodeAnalysis\ListenerClassValidator\OnlyAggregateByName;
9+
use Dudulina\Aggregate\CodeAnalysis\ListenerClassValidator\OnlyAggregateByName;
1010
use Psr\Log\LoggerInterface;
1111

1212
class AggregateEventApplyHandlerValidator

src/Gica/Cqrs/CodeGeneration/CodeGenerator.php renamed to src/Dudulina/CodeGeneration/CodeGenerator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33

4-
namespace Gica\Cqrs\CodeGeneration;
4+
namespace Dudulina\CodeGeneration;
55

66
use Gica\CodeAnalysis\MethodListenerDiscovery\MapCodeGenerator;
77
use Gica\FileSystem\FileSystemInterface;

src/Gica/Cqrs/CodeGeneration/CommandHandlersMapCodeGenerator.php renamed to src/Dudulina/CodeGeneration/CommandHandlersMapCodeGenerator.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
* Copyright (c) 2017 Constantin Galbenu <[email protected]> *
44
******************************************************************************/
55

6-
namespace Gica\Cqrs\CodeGeneration;
6+
namespace Dudulina\CodeGeneration;
77

88
use Gica\CodeAnalysis\MethodListenerDiscovery;
99
use Gica\CodeAnalysis\MethodListenerDiscovery\ListenerClassValidator\AnyPhpClassIsAccepted;
1010
use Gica\CodeAnalysis\MethodListenerDiscovery\MapGrouper\GrouperByEvent;
11-
use Gica\Cqrs\CodeGeneration\Traits\GroupedByEventTrait;
12-
use Gica\Cqrs\Command\CodeAnalysis\AggregateCommandHandlerDetector;
11+
use Dudulina\CodeGeneration\Traits\GroupedByEventTrait;
12+
use Dudulina\Command\CodeAnalysis\AggregateCommandHandlerDetector;
1313

1414
class CommandHandlersMapCodeGenerator
1515
{

src/Gica/Cqrs/CodeGeneration/CommandValidatorsMapCodeGenerator.php renamed to src/Dudulina/CodeGeneration/CommandValidatorsMapCodeGenerator.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
* Copyright (c) 2017 Constantin Galbenu <[email protected]> *
44
******************************************************************************/
55

6-
namespace Gica\Cqrs\CodeGeneration;
6+
namespace Dudulina\CodeGeneration;
77

88

99
use Gica\CodeAnalysis\MethodListenerDiscovery;
1010
use Gica\CodeAnalysis\MethodListenerDiscovery\ListenerClassValidator\AnyPhpClassIsAccepted;
11-
use Gica\Cqrs\CodeGeneration\Traits\GroupedByEventTrait;
12-
use Gica\Cqrs\Command\CodeAnalysis\AggregateCommandValidatorDetector;
11+
use Dudulina\CodeGeneration\Traits\GroupedByEventTrait;
12+
use Dudulina\Command\CodeAnalysis\AggregateCommandValidatorDetector;
1313

1414
class CommandValidatorsMapCodeGenerator
1515
{

src/Gica/Cqrs/CodeGeneration/ReadModelEventListenersMapCodeGenerator.php renamed to src/Dudulina/CodeGeneration/ReadModelEventListenersMapCodeGenerator.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
* Copyright (c) 2017 Constantin Galbenu <[email protected]> *
44
******************************************************************************/
55

6-
namespace Gica\Cqrs\CodeGeneration;
6+
namespace Dudulina\CodeGeneration;
77

88

99
use Gica\CodeAnalysis\MethodListenerDiscovery;
1010
use Gica\CodeAnalysis\MethodListenerDiscovery\ListenerClassValidator\AnyPhpClassIsAccepted;
11-
use Gica\Cqrs\CodeGeneration\Traits\GroupedByEventTrait;
12-
use Gica\Cqrs\Command\CodeAnalysis\ReadModelEventHandlerDetector;
11+
use Dudulina\CodeGeneration\Traits\GroupedByEventTrait;
12+
use Dudulina\Command\CodeAnalysis\ReadModelEventHandlerDetector;
1313

1414
class ReadModelEventListenersMapCodeGenerator
1515
{

src/Gica/Cqrs/CodeGeneration/ReadModelsMapCodeGenerator.php renamed to src/Dudulina/CodeGeneration/ReadModelsMapCodeGenerator.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
* Copyright (c) 2017 Constantin Galbenu <[email protected]> *
44
******************************************************************************/
55

6-
namespace Gica\Cqrs\CodeGeneration;
6+
namespace Dudulina\CodeGeneration;
77

88

99
use Gica\CodeAnalysis\MethodListenerDiscovery;
10-
use Gica\Cqrs\CodeGeneration\Traits\GroupedByListenerTrait;
11-
use Gica\Cqrs\Command\CodeAnalysis\ReadModelEventHandlerDetector;
12-
use Gica\Cqrs\ReadModel\ListenerClassValidator\OnlyReadModels;
10+
use Dudulina\CodeGeneration\Traits\GroupedByListenerTrait;
11+
use Dudulina\Command\CodeAnalysis\ReadModelEventHandlerDetector;
12+
use Dudulina\ReadModel\ListenerClassValidator\OnlyReadModels;
1313

1414
class ReadModelsMapCodeGenerator
1515
{

src/Gica/Cqrs/CodeGeneration/SagaEventListenerMapCodeGenerator.php renamed to src/Dudulina/CodeGeneration/SagaEventListenerMapCodeGenerator.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
* Copyright (c) 2017 Constantin Galbenu <[email protected]> *
44
******************************************************************************/
55

6-
namespace Gica\Cqrs\CodeGeneration;
6+
namespace Dudulina\CodeGeneration;
77

88

99
use Gica\CodeAnalysis\MethodListenerDiscovery;
1010
use Gica\CodeAnalysis\MethodListenerDiscovery\ListenerClassValidator\AnyPhpClassIsAccepted;
11-
use Gica\Cqrs\CodeGeneration\Traits\GroupedByEventTrait;
12-
use Gica\Cqrs\Command\CodeAnalysis\WriteSideEventHandlerDetector;
11+
use Dudulina\CodeGeneration\Traits\GroupedByEventTrait;
12+
use Dudulina\Command\CodeAnalysis\WriteSideEventHandlerDetector;
1313

1414
class SagaEventListenerMapCodeGenerator
1515
{

src/Gica/Cqrs/CodeGeneration/Traits/GroupedByEventTrait.php renamed to src/Dudulina/CodeGeneration/Traits/GroupedByEventTrait.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<?php
22

33

4-
namespace Gica\Cqrs\CodeGeneration\Traits;
4+
namespace Dudulina\CodeGeneration\Traits;
55

66
use Gica\CodeAnalysis\MethodListenerDiscovery\MapCodeGenerator\GroupedByEventMapCodeGenerator;
7-
use Gica\Cqrs\CodeGeneration\CodeGenerator;
7+
use Dudulina\CodeGeneration\CodeGenerator;
88

99
trait GroupedByEventTrait
1010
{

src/Gica/Cqrs/CodeGeneration/Traits/GroupedByListenerTrait.php renamed to src/Dudulina/CodeGeneration/Traits/GroupedByListenerTrait.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<?php
22

33

4-
namespace Gica\Cqrs\CodeGeneration\Traits;
4+
namespace Dudulina\CodeGeneration\Traits;
55

66
use Gica\CodeAnalysis\MethodListenerDiscovery\MapCodeGenerator\GroupedByListenerMapCodeGenerator;
7-
use Gica\Cqrs\CodeGeneration\CodeGenerator;
7+
use Dudulina\CodeGeneration\CodeGenerator;
88

99
trait GroupedByListenerTrait
1010
{

src/Gica/Cqrs/CodeGeneration/Traits/MapCodeGeneratorTrait.php renamed to src/Dudulina/CodeGeneration/Traits/MapCodeGeneratorTrait.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php
22

33

4-
namespace Gica\Cqrs\CodeGeneration\Traits;
4+
namespace Dudulina\CodeGeneration\Traits;
55

6-
use Gica\Cqrs\CodeGeneration\CodeGenerator;
6+
use Dudulina\CodeGeneration\CodeGenerator;
77
use Gica\FileSystem\FileSystemInterface;
88
use Gica\FileSystem\OperatingSystemFileSystem;
99
use Psr\Log\LoggerInterface;

src/Gica/Cqrs/Command.php renamed to src/Dudulina/Command.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Copyright (c) 2016 Constantin Galbenu <[email protected]> *
44
******************************************************************************/
55

6-
namespace Gica\Cqrs;
6+
namespace Dudulina;
77

88

99
interface Command

src/Gica/Cqrs/Command/CodeAnalysis/AggregateCommandHandlerDetector.php renamed to src/Dudulina/Command/CodeAnalysis/AggregateCommandHandlerDetector.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
* Copyright (c) 2016 Constantin Galbenu <[email protected]> *
44
******************************************************************************/
55

6-
namespace Gica\Cqrs\Command\CodeAnalysis;
6+
namespace Dudulina\Command\CodeAnalysis;
77

88

99
use Gica\CodeAnalysis\MethodListenerDiscovery\MessageClassDetector;
1010
use Gica\CodeAnalysis\Shared\ClassComparison\SubclassComparator;
11-
use Gica\Cqrs\Command;
11+
use Dudulina\Command;
1212

1313
class AggregateCommandHandlerDetector implements MessageClassDetector
1414
{

src/Gica/Cqrs/Command/CodeAnalysis/AggregateCommandValidatorDetector.php renamed to src/Dudulina/Command/CodeAnalysis/AggregateCommandValidatorDetector.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
* Copyright (c) 2016 Constantin Galbenu <[email protected]> *
44
******************************************************************************/
55

6-
namespace Gica\Cqrs\Command\CodeAnalysis;
6+
namespace Dudulina\Command\CodeAnalysis;
77

88

99
use Gica\CodeAnalysis\MethodListenerDiscovery\MessageClassDetector;
1010
use Gica\CodeAnalysis\Shared\ClassComparison\SubclassComparator;
11-
use Gica\Cqrs\Command;
11+
use Dudulina\Command;
1212

1313
class AggregateCommandValidatorDetector implements MessageClassDetector
1414
{

src/Gica/Cqrs/Command/CodeAnalysis/AggregateEventHandlersValidator.php renamed to src/Dudulina/Command/CodeAnalysis/AggregateEventHandlersValidator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Copyright (c) 2017 Constantin Galbenu <[email protected]> *
44
******************************************************************************/
55

6-
namespace Gica\Cqrs\Command\CodeAnalysis;
6+
namespace Dudulina\Command\CodeAnalysis;
77

88

99
class AggregateEventHandlersValidator extends \Gica\CodeAnalysis\AggregateEventHandlersValidator

src/Gica/Cqrs/Command/CodeAnalysis/ReadModelEventHandlerDetector.php renamed to src/Dudulina/Command/CodeAnalysis/ReadModelEventHandlerDetector.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
* Copyright (c) 2016 Constantin Galbenu <[email protected]> *
44
******************************************************************************/
55

6-
namespace Gica\Cqrs\Command\CodeAnalysis;
6+
namespace Dudulina\Command\CodeAnalysis;
77

88

99
use Gica\CodeAnalysis\MethodListenerDiscovery\MessageClassDetector;
1010
use Gica\CodeAnalysis\Shared\ClassComparison\SubclassComparator;
11-
use Gica\Cqrs\Event;
11+
use Dudulina\Event;
1212

1313
class ReadModelEventHandlerDetector implements MessageClassDetector
1414
{

src/Gica/Cqrs/Command/CodeAnalysis/WriteSideEventHandlerDetector.php renamed to src/Dudulina/Command/CodeAnalysis/WriteSideEventHandlerDetector.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
* Copyright (c) 2016 Constantin Galbenu <[email protected]> *
44
******************************************************************************/
55

6-
namespace Gica\Cqrs\Command\CodeAnalysis;
6+
namespace Dudulina\Command\CodeAnalysis;
77

88

99
use Gica\CodeAnalysis\MethodListenerDiscovery\MessageClassDetector;
1010
use Gica\CodeAnalysis\Shared\ClassComparison\SubclassComparator;
11-
use Gica\Cqrs\Event;
11+
use Dudulina\Event;
1212

1313
class WriteSideEventHandlerDetector implements MessageClassDetector
1414
{

src/Gica/Cqrs/Command/CommandApplier.php renamed to src/Dudulina/Command/CommandApplier.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
* Copyright (c) 2016 Constantin Galbenu <[email protected]> *
44
******************************************************************************/
55

6-
namespace Gica\Cqrs\Command;
6+
namespace Dudulina\Command;
77

88

9-
use Gica\Cqrs\Command;
9+
use Dudulina\Command;
1010

1111
class CommandApplier
1212
{

src/Gica/Cqrs/Command/CommandDispatcher.php renamed to src/Dudulina/Command/CommandDispatcher.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
* Copyright (c) 2016 Constantin Galbenu <[email protected]> *
44
******************************************************************************/
55

6-
namespace Gica\Cqrs\Command;
6+
namespace Dudulina\Command;
77

88

9-
use Gica\Cqrs\Command;
9+
use Dudulina\Command;
1010

1111
interface CommandDispatcher
1212
{

src/Gica/Cqrs/Command/CommandDispatcher/AuthenticatedIdentityReaderService.php renamed to src/Dudulina/Command/CommandDispatcher/AuthenticatedIdentityReaderService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Copyright (c) 2017 Constantin Galbenu <[email protected]> *
44
******************************************************************************/
55

6-
namespace Gica\Cqrs\Command\CommandDispatcher;
6+
namespace Dudulina\Command\CommandDispatcher;
77

88

99
interface AuthenticatedIdentityReaderService

0 commit comments

Comments
 (0)