diff --git a/config/mail.php b/config/mail.php index e53b7fd..371b1f7 100644 --- a/config/mail.php +++ b/config/mail.php @@ -53,15 +53,15 @@ 'mailgun' => [ 'transport' => 'mailgun', // 'client' => [ - // 'timeout' => 5, - // ], + // 'timeout' => 5, + // ], ], 'postmark' => [ 'transport' => 'postmark', // 'client' => [ - // 'timeout' => 5, - // ], + // 'timeout' => 5, + // ], ], 'sendmail' => [ diff --git a/config/queue.php b/config/queue.php index 8499aca..4d837f2 100644 --- a/config/queue.php +++ b/config/queue.php @@ -74,20 +74,20 @@ ], /* - |-------------------------------------------------------------------------- - | Job Batching - |-------------------------------------------------------------------------- - | - | The following options configure the database and table that store job - | batching information. These options can be updated to any database - | connection and table which has been defined by your application. - | - */ - - 'batching' => [ - 'database' => env('DB_CONNECTION', 'mysql'), - 'table' => 'job_batches', - ], + |-------------------------------------------------------------------------- + | Job Batching + |-------------------------------------------------------------------------- + | + | The following options configure the database and table that store job + | batching information. These options can be updated to any database + | connection and table which has been defined by your application. + | + */ + + 'batching' => [ + 'database' => env('DB_CONNECTION', 'mysql'), + 'table' => 'job_batches', + ], /* |--------------------------------------------------------------------------