Skip to content

Commit

Permalink
Move appended path inside storage_path function call
Browse files Browse the repository at this point in the history
  • Loading branch information
shark0der committed Jan 16, 2016
1 parent 67d5a0f commit a5ee609
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions config/debugbar.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@
|
*/
'storage' => array(
'enabled' => true,
'driver' => 'file', // redis, file, pdo, custom
'path' => storage_path() . '/debugbar', // For file driver
'enabled' => true,
'driver' => 'file', // redis, file, pdo, custom
'path' => storage_path('debugbar'), // For file driver
'connection' => null, // Leave null for default connection (Redis/PDO)
'provider' => '' // Instance of StorageInterface for custom driver
'provider' => '' // Instance of StorageInterface for custom driver
),

/*
Expand Down

0 comments on commit a5ee609

Please sign in to comment.