Skip to content
This repository has been archived by the owner on May 28, 2021. It is now read-only.

Commit

Permalink
Fix codestyle.
Browse files Browse the repository at this point in the history
  • Loading branch information
nielssp committed May 15, 2016
1 parent c693faf commit fc983d9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/Database/Loader.php
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,11 @@ public function checkDriver($driver)
try {
$info = Json::decodeFile($this->drivers . '/' . $driver . '/driver.json');
} catch (JsonException $e) {
throw new InvalidDriverException('Invalid driver manifest: ' . $driver . ' (' . $e->getMessage() . ')', 0, $e);
throw new InvalidDriverException(
'Invalid driver manifest: ' . $driver . ' (' . $e->getMessage() . ')',
0,
$e
);
}
if (! isset($info['required'])) {
$info['required'] = array();
Expand Down

0 comments on commit fc983d9

Please sign in to comment.