for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
use ByTIC\EventDispatcher\Events\EventInterface;
if (!function_exists('event')) {
/**
* Dispatch an event and call the listeners.
*
* @param object|EventInterface $event
* @return object|EventInterface
*/
function event(object $event)
{
return app('events')->dispatch($event);
}