25th / zf2-doctrine2-autoflush
There is no license information available for the latest version (dev-master) of this package.
Package info
github.com/25th-floor/zf2-doctrine2-autoflush
pkg:composer/25th/zf2-doctrine2-autoflush
dev-master
2014-07-31 15:32 UTC
Requires
- php: >=5.4
- doctrine/doctrine-module: *
This package is not auto-updated.
Last update: 2026-02-28 22:31:04 UTC
README
Installation
Just attach an instance of the AutoFlushListener to the event manager like in the following code example:
class Module
{
/**
* @param MvcEvent $e MVC Event
*/
public function onBootstrap(MvcEvent $e)
{
$eventManager = $e->getApplication()->getEventManager();
$eventManager->attachAggregate(new AutoFlushListener());
}
}