Skip to content

Commit

Permalink
Fix on merging PDO_IBM options
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxime Rault committed Jul 23, 2015
1 parent 865fa6e commit 22482cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Connectors/IBMConnector.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public function connect(array $config)
break;
}

$options = array_merge($this->getOptions($config), $options) ;
$options = $this->getOptions($config) + $options;

$connection = $this->createConnection($dsn, $config, $options);

Expand Down

0 comments on commit 22482cf

Please sign in to comment.