Skip to content

Commit

Permalink
Pass through full config for connection
Browse files Browse the repository at this point in the history
  • Loading branch information
emericklaw authored Sep 7, 2022
1 parent 126629c commit dc48fea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/emericklaw/SQLAnywhere/SQLAnywhereServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public function boot()

$connector = new SQLAnywhereConnector();
$pdo = $connector->connect($config);
return new SQLAnywhereConnection($pdo, $config['database'], $config['prefix']);
return new SQLAnywhereConnection($pdo, $config['database'], $config['prefix'], $config);
});
}

Expand Down

0 comments on commit dc48fea

Please sign in to comment.