Skip to content

Commit 62e1a21

Browse files
authored
[5.x] Removed redundant default values from config file (#1626)
PhpStorm Inspector pointed this out. Similar to previous @ #1323
1 parent a6030c1 commit 62e1a21

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

config/telescope.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@
7676
*/
7777

7878
'queue' => [
79-
'connection' => env('TELESCOPE_QUEUE_CONNECTION', null),
80-
'queue' => env('TELESCOPE_QUEUE', null),
79+
'connection' => env('TELESCOPE_QUEUE_CONNECTION'),
80+
'queue' => env('TELESCOPE_QUEUE'),
8181
'delay' => env('TELESCOPE_QUEUE_DELAY', 10),
8282
],
8383

0 commit comments

Comments
 (0)