PHP code example of digitalrisks / laravel-eventstore
1. Go to this page and download the library: Download digitalrisks/laravel-eventstore library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
digitalrisks / laravel-eventstore example snippets
php
interface ShouldBeStored
{
public function getEventStream(): string;
public function getEventType(): string;
public function getEventId(): string;
public function getData(): array;
public function getMetadata(): array;
}
php
class AccountCreated implements ShouldBeStored
{
use DigitalRisks\LaravelEventStore\Traits\AddsLaravelMetadata;
/** @metadata */
public function collectIpMetadata()
{
return [
'ip' => $_SERVER['REMOTE_ADDR'],
];
}
}
php
class AccountCreatedTest extends TestCase
{
use DigitalRisks\LaravelEventStore\Tests\Traits\InteractsWithEventStore;
public function test_it_creates_an_event_when_an_account_is_created()
{
// Act.
$this->json('POST', '/api/accounts', ['email' => '[email protected]']);
// Assert.
$this->assertEventStoreEventRaised('AccountCreated', 'accounts', ['email' => '[email protected]']);
}
}
sh
$ php artisan eventstore:worker {--parallel= : How many events to run in parallel.} {--timeout= : How long the event should time out for.}
$ php artisan eventstore:worker --parallel=10 --timeout=5
php
class SendAccountCreatedEmail
{
public function handle(AccountCreated $event)
{
Mail::to($event->email)->send('Here is your account');
}
}