1. Go to this page and download the library: Download php-ddd/domain-event library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?phprequire_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
php-ddd / domain-event example snippets
usePhpDDD\Domain\AbstractAggregateRoot;
classPurchaseOrderextendsAbstractAggregateRoot{
/**
* @var mixed
*/private $customerId;
/**
* Try to create a new PurchaseOrder for a client.
*/publicfunction__construct(Customer $customer){
// Tests that some business rules are followed.if (false === $customer->isActive()) {
thrownew MyDomainException('The customer need to be active.');
}
// ...// Since every rules are validated, we can simulate the creation of the Event associated// This allows us to have less redundant code$this->apply(new PurchaseOrderCreated($customer, new DateTime()));
// This is equivalent as// $this->customerId = $customer->getId();// $this->events[] = new PurchaseOrderCreated($customer, new DateTime());// but we are not allowing to add event directly.
}
/**
* The apply() method will automatically call this method.
* Since it's an event you should never do some tests in this method.
* Try to think that an Event is something that happened in the past.
* You can not modify what happened. The only thing that you can do is create another event to compensate.
*/protectedfunctionapplyPurchaseOrderCreated(PurchaseOrderCreated $event){
$this->customerId = $event->getCustomer()->getId();
}
}
usePhpDDD\Domain\Event\Listener\AbstractEventListener;
classSendEmailOnPurchaseOrderCreatedextendsAbstractEventListener{
private $mailer;
publicfunction__construct($mailer){
$this->mailer = $mailer;
}
/**
* {@inheritDoc}
*/publicfunctiongetSupportedEventClassName(){
return'PurchaseOrderCreated'; // Should be the fully qualified class name of the event
}
/**
* {@inheritDoc}
*/publicfunctionhandle(EventInterface $event){
$this->mailer->send('to@you.com', 'Purchase order created for customer #' . $event->getCustomer()->getId());
}
}
// first the locator
$locator = new \PhpDDD\Domain\Event\Listener\Locator\EventListenerLocator();
$locator->register('PurchaseOrderCreated', new SendEmailOnPurchaseOrderCreated(/* $mailer */));
// then the EventBus
$bus = new \PhpDDD\Domain\Event\Bus\EventBus($locator);
// do what you need to do on your Domain
$aggregateRoot = new PurchaseOrder(new Customer(1));
// Then apply EventListeners
$events = $aggregateRoot->pullEvents(); // this will clear the list of event in your AggregateRoot so an Event is trigger only once// You can have more than one event at a time.foreach($events as $event) {
$bus->publish($event);
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.