You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
When merging a custom config array with the default config array, it is not possible to "remove" one of the value from the default config.
ie.
Default config is ['dispositions' => ['attachment', 'inline']]
My local config is ['dispositions' => ['attachment']]
The config stored in ClientManager::$config is ['dispositions' => ['attachment', 'inline']] when I expect it to be ['dispositions' => ['attachment']]
Describe the bug
When merging a custom config array with the default config array, it is not possible to "remove" one of the value from the default config.
ie.
Default config is
['dispositions' => ['attachment', 'inline']]
My local config is
['dispositions' => ['attachment']]
The config stored in
ClientManager::$config
is['dispositions' => ['attachment', 'inline']]
when I expect it to be['dispositions' => ['attachment']]
Used config
Code to Reproduce
Expected behavior
It should be possible to fully overwrite the default values of config array
Proposed resolution
The text was updated successfully, but these errors were encountered: