mirror of
https://github.com/php-flasher/php-flasher.git
synced 2026-03-31 15:07:47 +01:00
test: fix array_merge parameters order
This commit is contained in:
@@ -147,7 +147,7 @@ final class ResourceManager implements ResourceManagerInterface
|
||||
$options = $this->config->get('options', array());
|
||||
|
||||
if (isset($this->options[$handler])) {
|
||||
$options = array_merge($options, $this->options[$handler]);
|
||||
$options = array_merge($this->options[$handler], $options);
|
||||
}
|
||||
|
||||
$this->addOptions('theme.flasher', $options);
|
||||
|
||||
Reference in New Issue
Block a user