for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Onoi\EventDispatcher\Listener;
use Onoi\EventDispatcher\EventListener;
use Onoi\EventDispatcher\DispatchContext;
/**
* @license GNU GPL v2+
* @since 1.0
*
* @author mwjames
*/
class NullEventListener implements EventListener {
* {@inheritDoc}
public function execute( DispatchContext $dispatchContext = null ) {}
public function isPropagationStopped() {
return false;
}