Файл vendor/laravel/framework/src/Illuminate/Foundation/Testing/WithoutEvents.php Вес запакованого файла 263b (263 b) Вес распакованого файла: 456b (456 b) Метод сжатия: 8
<?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.');
}
}
}