Skip to content

Commit

Permalink
correct default notification interval in min
Browse files Browse the repository at this point in the history
  • Loading branch information
markvaneijk committed Oct 31, 2023
1 parent acac0fd commit c6bcdba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/ok.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

'notifiable' => Notifiable::class,

'interval_in_minutes' => env('OK_NOTIFICATION_INTERVAL', 60 * 60 * 24),
'interval_in_minutes' => env('OK_NOTIFICATION_INTERVAL', 60 * 24),

'cache_driver' => env('OK_CACHE_DRIVER', 'file'),

Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/NotificationTest.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<?php


use Illuminate\Support\Facades\Cache;
use Illuminate\Support\Facades\Notification;
use Vormkracht10\LaravelOK\Checks\Base\Check;
use Vormkracht10\LaravelOK\Checks\Base\Result;
use Vormkracht10\LaravelOK\Events\CheckFailed;
use Vormkracht10\LaravelOK\Notifications\CheckFailedNotification;

use function Pest\Laravel\travel;

$failed = new class extends Check
Expand Down

0 comments on commit c6bcdba

Please sign in to comment.