@@ -66,31 +66,36 @@ return [
6666 ],
6767
6868 /*
69- * Define the output format that you want to use. Multiple classes are supported
69+ * Define the output format that you want to use. Multiple classes are supported.
7070 * Available options are:
7171 *
7272 * Alert:
7373 * Displays an alert on the website
7474 * \BeyondCode\QueryDetector\Outputs\Alert::class
7575 *
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- *
8476 * Console:
8577 * Writes the N+1 queries into your browsers console log
8678 * \BeyondCode\QueryDetector\Outputs\Console::class
8779 *
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+ *
8888 * JSON:
8989 * Writes the N+1 queries into the response body of your JSON responses
9090 * \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
9195 */
9296 'output' => [
93- \BeyondCode\QueryDetector\Outputs\Alert::class
97+ \BeyondCode\QueryDetector\Outputs\Log::class,
98+ \BeyondCode\QueryDetector\Outputs\Alert::class,
9499 ]
95100
96101];
0 commit comments