I don't see any method to configure the disable_asserts parameter. The only parameter that can be passed to the Filesystem configuration is visibility.
$options = [];
if (array_key_exists('visibility', $config)) {
$options['visibility'] = $config['visibility'];
}
$container
->setDefinition($id, new DefinitionDecorator('oneup_flysystem.filesystem'))
->replaceArgument(0, new Reference($cache ? $adapter.'_cached' : $adapter))
->replaceArgument(1, $options)
->addTag('oneup_flysystem.filesystem', $tagParams);
I don't see any method to configure the disable_asserts parameter. The only parameter that can be passed to the Filesystem configuration is visibility.
Thanks.