mirror of
https://github.com/coollabsio/coolify.git
synced 2026-03-11 08:55:47 +00:00
refactor: apply rector refactors
This commit is contained in:
parent
c2d584679c
commit
dab768211b
3 changed files with 5 additions and 5 deletions
|
|
@ -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();
|
||||
|
|
|
|||
|
|
@ -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'),
|
||||
],
|
||||
|
||||
/*
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Reference in a new issue