mrazvan92 / doctrine-domain-events-bundle
With this Bundle we can send all the events which were generated by entitis at SimpleBus
Installs: 47
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Type:symfony-bundle
Requires
- php: >=5.6
- simple-bus/message-bus: ^2.2
- symfony/symfony: v3.2.0-RC1
This package is not auto-updated.
Last update: 2025-03-29 23:10:30 UTC
README
With this Bundle we can send all the events which were generated by entities at SimpleBus
Install
- SimpleBus/SymfonyBridge: http://simplebus.github.io/SymfonyBridge/
- You need to enable the DoctrineDomainEvents in your project
$bundles = [
...
new MR\DoctrineDomainEventsBundle\DoctrineDomainEventsBundle(),
...
];
Usage
- after doctrine flush this event will be sent at rabbit queue
use SimpleBus\Message\Recorder\{PrivateMessageRecorderCapabilities, ContainsRecordedMessages};
class EntityName implements ContainsRecordedMessages
{
use PrivateMessageRecorderCapabilities;
public function __construct()
{
$this->record(
new EventClass(
'value1',
'value2'
)
);
}
}