PATH:
home
/
lab2454c
/
tripvare.com
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Foundation
/
Testing
<?php namespace Illuminate\Foundation\Testing; use Exception; trait WithoutEvents { /** * Prevent all event handles from being executed. * * @throws \Exception */ public function disableEventsForAllTests() { if (method_exists($this, 'withoutEvents')) { $this->withoutEvents(); } else { throw new Exception('Unable to disable events. ApplicationTrait not used.'); } } }
[-] TestCase.php
[edit]
[+]
..
[-] DatabaseTransactions.php
[edit]
[-] RefreshDatabaseState.php
[edit]
[-] WithoutMiddleware.php
[edit]
[-] WithFaker.php
[edit]
[-] RefreshDatabase.php
[edit]
[-] WithoutEvents.php
[edit]
[-] DatabaseMigrations.php
[edit]
[+]
Concerns
[-] Wormhole.php
[edit]