attachDefaultListeners() protected method

Register the default events for this controller
protected attachDefaultListeners ( ) : void
return void
 protected function attachDefaultListeners()
 {
     parent::attachDefaultListeners();
     $this->getEventManager()->attach(MvcEvent::EVENT_DISPATCH, function (MvcEvent $event) {
         $event->getTarget()->layout('layout/frontend/gallery');
     });
 }