25th/zf2-doctrine2-autoflush

There is no license information available for the latest version (dev-master) of this package.

dev-master 2014-07-31 15:32 UTC

This package is not auto-updated.

Last update: 2024-04-13 12:59:07 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());
	}
}