-
-
Notifications
You must be signed in to change notification settings - Fork 165
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4e84506
commit a3de0c9
Showing
4 changed files
with
46 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
|
||
namespace Spatie\EventSourcing\Tests\TestClasses\EventSerializer; | ||
|
||
use DateTimeZone; | ||
use Spatie\EventSourcing\EventSerializers\JsonEventSerializer; | ||
use Spatie\EventSourcing\StoredEvents\ShouldBeStored; | ||
|
||
class DummySerializer extends JsonEventSerializer | ||
{ | ||
public function serialize(ShouldBeStored $event): string | ||
{ | ||
return '{"message":"message set by custom serializer"}'; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?php | ||
|
||
namespace Spatie\EventSourcing\Tests\TestClasses\Events; | ||
|
||
use Spatie\EventSourcing\Attributes\EventSerializer; | ||
use Spatie\EventSourcing\StoredEvents\ShouldBeStored; | ||
use Spatie\EventSourcing\Tests\TestClasses\EventSerializer\DummySerializer; | ||
|
||
#[EventSerializer(DummySerializer::class)] | ||
class EventWithCustomSerializer extends ShouldBeStored | ||
{ | ||
public string $message; | ||
|
||
public function __construct(string $message) | ||
{ | ||
$this->message = $message; | ||
} | ||
} |