Passed
Pull Request — main (#146)
by mohsen
15:59
created
src/Services/Network.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
 {
10 10
     public function check(): string
11 11
     {
12
-        foreach(config('stethoscope.network_monitor_url') as $networkMonitorURL){
12
+        foreach (config('stethoscope.network_monitor_url') as $networkMonitorURL) {
13 13
             try {
14 14
                 Http::get($networkMonitorURL)->successful();
15 15
                 $networkConnction = 'connected';
Please login to merge, or discard this patch.
config/stethoscope.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
     |
72 72
     */
73 73
 
74
-    'network_monitor_url' => env('NETWORK_MONITOR_URL', ['https://1.1.1.1/', 'https://www.google.com/']),
74
+    'network_monitor_url' => env('NETWORK_MONITOR_URL', [ 'https://1.1.1.1/', 'https://www.google.com/' ]),
75 75
 
76 76
     /*
77 77
     |--------------------------------------------------------------------------
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
     'notifications' => [
107 107
 
108 108
         'notifications' => [
109
-            \MohsenAbrishami\Stethoscope\Notifications\LogReportNotification::class => ['mail'],
109
+            \MohsenAbrishami\Stethoscope\Notifications\LogReportNotification::class => [ 'mail' ],
110 110
         ],
111 111
 
112 112
         'notifiable' => \MohsenAbrishami\Stethoscope\Notifications\Notifiable::class,
Please login to merge, or discard this patch.