> */ protected $listen = [ Registered::class => [ SendEmailVerificationNotification::class, ], ]; /** * Register any events for your application. * * @return void */ public function boot() { // DB::listen( // function ($query) { // $tmp = str_replace('?', '"' . '%s' . '"', $query->sql); // $qBindings = []; // foreach ($query->bindings as $key => $value) { // if (is_numeric($key)) { // $qBindings[] = $value; // } else { // $tmp = str_replace(':' . $key, '"' . $value . '"', $tmp); // } // } // $tmp = vsprintf($tmp, $qBindings); // $tmp = str_replace("\\", "", $tmp); // Log::info(' execution time: ' . $query->time . 'ms; ' . $tmp . "\n\t"); // } // ); } /** * Determine if events and listeners should be automatically discovered. * * @return bool */ public function shouldDiscoverEvents() { return false; } }