Skip to content

Commit

Permalink
allow the disable_asserts config value (#14864)
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonvarga authored and taylorotwell committed Aug 17, 2016
1 parent a76f601 commit afd9c98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Illuminate/Filesystem/FilesystemManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit afd9c98

Please sign in to comment.