Skip to content

Commit

Permalink
Merge pull request #3 from MarcoGiesen/task/some-doc-fixes
Browse files Browse the repository at this point in the history
Minor doc changes
  • Loading branch information
DavidBadura authored Nov 21, 2020
2 parents 9c7d7b3 + 4061ced commit e234229
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ namespace App\Domain\Profile;

use App\Domain\Profile\Event\MessagePublished;
use App\Domain\Profile\Event\ProfileCreated;
use App\EventSourcing\AggregateRoot;
use Patchlevel\EventSourcing\Aggregate\AggregateRoot;

final class Profile extends AggregateRoot
{
Expand Down Expand Up @@ -87,7 +87,7 @@ namespace App\Domain\Profile\Event;

use App\Domain\Profile\Email;
use App\Domain\Profile\ProfileId;
use App\EventSourcing\AggregateChanged;
use Patchlevel\EventSourcing\Aggregate\AggregateChanged;

final class ProfileCreated extends AggregateChanged
{
Expand Down Expand Up @@ -125,10 +125,10 @@ namespace App\ReadModel\Projection;

use const DATE_ATOM;
use App\Domain\Profile\Event\MessagePublished;
use App\EventSourcing\Projection;
use App\Infrastructure\MongoDb\MongoDbManager;
use Patchlevel\EventSourcing\Projection\Projection;

final class MessageProjection extends Projection
final class MessageProjection implements Projection
{
private MongoDbManager $db;

Expand Down

0 comments on commit e234229

Please sign in to comment.