refactor: apply rector refactors

This commit is contained in:
peaklabs-dev 2025-11-18 17:27:18 +01:00
parent c2d584679c
commit dab768211b
No known key found for this signature in database
3 changed files with 5 additions and 5 deletions

View file

@ -11,5 +11,5 @@ return Application::configure(basePath: dirname(__DIR__))
web: __DIR__.'/../routes/web.php',
commands: __DIR__.'/../routes/console.php',
)
->withMiddleware(function (Middleware $middleware) {})
->withExceptions(function (Exceptions $exceptions) {})->create();
->withMiddleware(function (Middleware $middleware): void {})
->withExceptions(function (Exceptions $exceptions): void {})->create();

View file

@ -32,7 +32,7 @@ return [
'bcrypt' => [
'rounds' => env('BCRYPT_ROUNDS', 14),
'verify' => env('HASH_VERIFY', true),
'limit' => env('BCRYPT_LIMIT', null),
'limit' => env('BCRYPT_LIMIT'),
],
/*

View file

@ -120,13 +120,13 @@ return [
* Absolute base path for your sites or projects in Homestead,
* Vagrant, Docker, or another remote development server.
*/
'remote_path' => env('RAY_REMOTE_PATH', null),
'remote_path' => env('RAY_REMOTE_PATH'),
/*
* Absolute base path for your sites or projects on your local
* computer where your IDE or code editor is running on.
*/
'local_path' => env('RAY_LOCAL_PATH', null),
'local_path' => env('RAY_LOCAL_PATH'),
/*
* When this setting is enabled, the package will not try to format values sent to Ray.