From f19bb8c180e8a02c14ae9c6dc849156d97f34c9b Mon Sep 17 00:00:00 2001 From: Robin van der Vleuten Date: Wed, 20 Dec 2017 19:22:51 +0100 Subject: [PATCH] Using Laravel helper to resolve filepath --- docs/laravel/queues.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/laravel/queues.md b/docs/laravel/queues.md index ed9dd9574..8043a259e 100644 --- a/docs/laravel/queues.md +++ b/docs/laravel/queues.md @@ -22,7 +22,7 @@ return [ 'connection_factory_class' => \Enqueue\Fs\FsConnectionFactory::class, // the factory specific options - 'dsn' => 'file://'.realpath(__DIR__.'/../storage').'/enqueue', + 'dsn' => 'file://'.storage_path('enqueue'), ], ], ];