<?phpnamespaceIlluminate\Foundation\Testing;useException;traitWithoutEvents{/** * Prevent all event handles from being executed. * * @throws \Exception */publicfunctiondisableEventsForAllTests(){if(method_exists($this,'withoutEvents')){$this->withoutEvents();}else{thrownewException('Unable to disable events. ApplicationTrait not used.');}}}