All Projects → fesor → domain-events

fesor / domain-events

Licence: other
Simple Domain Events Implementation

Programming Languages

PHP
23972 projects - #3 most used programming language

Domain Events

This is very simple implementation of domain events.

Usage

<?php

namespace Domain\User;
 
use \Fesor\DomainEvent\DomainEvents; 
 
class User {
    
    use DomainEvents;
    
    private $email;
    
    private $password;
    
    public function __constructor(Email $email, Password $password)
    {
        $this->email = $email;
        $this->password = $password;
        // remember event
        $this->rememberThat(new UserRegistered($this));
    }
}

Now we can know what happened with our entity during request:

$user = new User(new Email($email), new Password($password));
$events = $user->releaseEvents(); // will return array with UserRegistered event
$tryAgain = $user->releaseEvents(); // will return empty array, since we already released all events

$dispatcher = new EventDispatcher();
$dispatcher->dispatch($events);
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].