File tree Expand file tree Collapse file tree 1 file changed +12
-8
lines changed
Expand file tree Collapse file tree 1 file changed +12
-8
lines changed Original file line number Diff line number Diff line change 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,
You can’t perform that action at this time.
0 commit comments