blob: 37abb81633f0b256606376396314538d4be19f0d [file] [log] [blame]
<?php
namespace Adldap\Models\Concerns;
use Adldap\Adldap;
use Adldap\Models\Events\Event;
trait HasEvents
{
/**
* Fires the specified model event.
*
* @param Event $event
*
* @return mixed
*/
protected function fireModelEvent(Event $event)
{
return Adldap::getEventDispatcher()->fire($event);
}
}