Skip to content

Instantly share code, notes, and snippets.

@ismail1432
Created October 31, 2019 23:35
Show Gist options
  • Save ismail1432/caea84cee16e0b140dbd5324527e3831 to your computer and use it in GitHub Desktop.
Save ismail1432/caea84cee16e0b140dbd5324527e3831 to your computer and use it in GitHub Desktop.
<?php
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
class BazController
{
/**
*@Route("/show")
*/
public function show(EventDispatcherInterface $eventDispatcher)
{
// Dispatch the event
// all listeners with DisableListenerInterface call the `disable` method
$eventDispatcher->dispatch(DisableListenerEvent::NAME);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment