We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 651ae7f commit 18adc50Copy full SHA for 18adc50
app/Providers/AppServiceProvider.php
@@ -4,7 +4,10 @@
4
5
use App\Logic\LicenceVerification;
6
use App\Logic\NetifydLicenseRepository;
7
+use Illuminate\Foundation\Events\DiagnosingHealth;
8
+use Illuminate\Support\Facades\Event;
9
use Illuminate\Support\ServiceProvider;
10
+use Laravel\Nightwatch\Facades\Nightwatch;
11
12
class AppServiceProvider extends ServiceProvider
13
{
@@ -26,6 +29,8 @@ public function register(): void
26
29
*/
27
30
public function boot(): void
28
31
- //
32
+ Event::listen(function (DiagnosingHealth $event) {
33
+ Nightwatch::dontSample();
34
+ });
35
}
36
0 commit comments