File tree Expand file tree Collapse file tree 1 file changed +13
-9
lines changed Expand file tree Collapse file tree 1 file changed +13
-9
lines changed Original file line number Diff line number Diff line change @@ -66,28 +66,32 @@ return [
66
66
],
67
67
68
68
/*
69
- * Define the output format that you want to use. Multiple classes are supported
69
+ * Define the output formats that you want to use.
70
70
* Available options are:
71
71
*
72
72
* Alert:
73
73
* Displays an alert on the website
74
74
* \BeyondCode\QueryDetector\Outputs\Alert::class
75
75
*
76
- * Debugbar: (make sure you have the barryvdh/laravel-debugbar package installed)
77
- * Writes the N+1 queries into a custom messages collector of Debugbar
78
- * \BeyondCode\QueryDetector\Outputs\Debugbar::class
79
- *
80
- * Log:
81
- * Writes the N+1 queries into the Laravel.log file
82
- * \BeyondCode\QueryDetector\Outputs\Log::class
83
- *
84
76
* Console:
85
77
* Writes the N+1 queries into your browsers console log
86
78
* \BeyondCode\QueryDetector\Outputs\Console::class
87
79
*
80
+ * Clockwork: (make sure you have the itsgoingd/clockwork package installed)
81
+ * Writes the N+1 queries warnings to Clockwork log
82
+ * \BeyondCode\QueryDetector\Outputs\Clockwork::class
83
+ *
84
+ * Debugbar: (make sure you have the barryvdh/laravel-debugbar package installed)
85
+ * Writes the N+1 queries into a custom messages collector of Debugbar
86
+ * \BeyondCode\QueryDetector\Outputs\Debugbar::class
87
+ *
88
88
* JSON:
89
89
* Writes the N+1 queries into the response body of your JSON responses
90
90
* \BeyondCode\QueryDetector\Outputs\Json::class
91
+ *
92
+ * Log:
93
+ * Writes the N+1 queries into the Laravel.log file
94
+ * \BeyondCode\QueryDetector\Outputs\Log::class
91
95
*/
92
96
'output' => [
93
97
\BeyondCode\QueryDetector\Outputs\Log::class,
You can’t perform that action at this time.
0 commit comments