Skip to content

Commit 80633a2

Browse files
committed
Merge pull request barryvdh#446 from shark0der/master
Move appended storage path inside `storage_path` function call and indent array values
2 parents 67d5a0f + a5ee609 commit 80633a2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

config/debugbar.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@
2727
|
2828
*/
2929
'storage' => array(
30-
'enabled' => true,
31-
'driver' => 'file', // redis, file, pdo, custom
32-
'path' => storage_path() . '/debugbar', // For file driver
30+
'enabled' => true,
31+
'driver' => 'file', // redis, file, pdo, custom
32+
'path' => storage_path('debugbar'), // For file driver
3333
'connection' => null, // Leave null for default connection (Redis/PDO)
34-
'provider' => '' // Instance of StorageInterface for custom driver
34+
'provider' => '' // Instance of StorageInterface for custom driver
3535
),
3636

3737
/*

0 commit comments

Comments
 (0)