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 29
29
* Displays an alert on the website
30
30
* \BeyondCode\QueryDetector\Outputs\Alert::class
31
31
*
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
- *
40
32
* Console:
41
33
* Writes the N+1 queries into your browsers console log
42
34
* \BeyondCode\QueryDetector\Outputs\Console::class
43
35
*
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
+ *
44
44
* JSON:
45
45
* Writes the N+1 queries into the response body of your JSON responses
46
46
* \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
47
51
*/
48
52
'output ' => [
49
53
\BeyondCode \QueryDetector \Outputs \Log::class,
You can’t perform that action at this time.
0 commit comments