Skip to content

Commit 2d03eb4

Browse files
committed
fix typos in laravel 12 installation instructions
1 parent 68a5c73 commit 2d03eb4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,14 +160,14 @@ withException method, you can integrate the DevLogger package to automatically c
160160

161161
$exceptions->report(function (Throwable $e){
162162
if (config('devlogger.auto_catch_exceptions', true)) {
163-
\DevLoggertPackage\Facades\DevLogger::logException($e, [
163+
\DevLoggerPackage\Facades\DevLogger::logException($e, [
164164
'url' => request()?->fullUrl(),
165165
'method' => request()?->method(),
166166
'input' => request()?->except(['password', 'password_confirmation', '_token']),
167167
]);
168168
}
169169
return true;
170-
})
170+
});
171171

172172
})->create();
173173
```

0 commit comments

Comments
 (0)