Skip to content

Instantly share code, notes, and snippets.

@gsdevme
Created March 26, 2013 10:49
Show Gist options
  • Save gsdevme/5244528 to your computer and use it in GitHub Desktop.
Save gsdevme/5244528 to your computer and use it in GitHub Desktop.
<?php
namespace Application;
use Zend\Mvc\MvcEvent;
class Module
{
public function onBootstrap(MvcEvent $e)
{
$e->getTarget()->getEventManager()->attach('dispatch', function(MvcEvent $e){
// param method logic bit
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment