Skip to content

Commit 4463719

Browse files
authored
add Clockwork option to config
1 parent cbf5174 commit 4463719

File tree

1 file changed

+12
-8
lines changed

1 file changed

+12
-8
lines changed

config/config.php

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -29,21 +29,25 @@
2929
* Displays an alert on the website
3030
* \BeyondCode\QueryDetector\Outputs\Alert::class
3131
*
32-
* Debugbar: (make sure you have the barryvdh/laravel-debugbar package installed)
33-
* Writes the N+1 queries into a custom messages collector of Debugbar
34-
* \BeyondCode\QueryDetector\Outputs\Debugbar::class
35-
*
36-
* Log:
37-
* Writes the N+1 queries into the Laravel.log file
38-
* \BeyondCode\QueryDetector\Outputs\Log::class
39-
*
4032
* Console:
4133
* Writes the N+1 queries into your browsers console log
4234
* \BeyondCode\QueryDetector\Outputs\Console::class
4335
*
36+
* Clockwork: (make sure you have the itsgoingd/clockwork package installed)
37+
* Writes the N+1 queries warnings to Clockwork log
38+
* \BeyondCode\QueryDetector\Outputs\Clockwork::class
39+
*
40+
* Debugbar: (make sure you have the barryvdh/laravel-debugbar package installed)
41+
* Writes the N+1 queries into a custom messages collector of Debugbar
42+
* \BeyondCode\QueryDetector\Outputs\Debugbar::class
43+
*
4444
* JSON:
4545
* Writes the N+1 queries into the response body of your JSON responses
4646
* \BeyondCode\QueryDetector\Outputs\Json::class
47+
*
48+
* Log:
49+
* Writes the N+1 queries into the Laravel.log file
50+
* \BeyondCode\QueryDetector\Outputs\Log::class
4751
*/
4852
'output' => [
4953
\BeyondCode\QueryDetector\Outputs\Log::class,

0 commit comments

Comments
 (0)