From 066251989e0aa3c0b0f51af914e31678bdf1198c Mon Sep 17 00:00:00 2001 From: Jason Varga Date: Wed, 17 Aug 2016 12:06:58 -0400 Subject: [PATCH] allow the disable_asserts config value --- src/Illuminate/Filesystem/FilesystemManager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Illuminate/Filesystem/FilesystemManager.php b/src/Illuminate/Filesystem/FilesystemManager.php index 35b3b1f92213..961c624cfc2f 100644 --- a/src/Illuminate/Filesystem/FilesystemManager.php +++ b/src/Illuminate/Filesystem/FilesystemManager.php @@ -239,7 +239,7 @@ protected function getRackspaceContainer(Rackspace $client, array $config) */ protected function createFlysystem(AdapterInterface $adapter, array $config) { - $config = Arr::only($config, ['visibility']); + $config = Arr::only($config, ['visibility', 'disable_asserts']); return new Flysystem($adapter, count($config) > 0 ? $config : null); }