Skip to content

Commit

Permalink
Add space before catch in Connection
Browse files Browse the repository at this point in the history
  • Loading branch information
bcrowe committed Sep 24, 2014
1 parent d5828d0 commit 3bbac01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Database/Connection.php
Expand Up @@ -168,7 +168,7 @@ public function connect() {
try { try {
$this->_driver->connect(); $this->_driver->connect();
return true; return true;
} catch(\Exception $e) { } catch (\Exception $e) {
throw new MissingConnectionException(['reason' => $e->getMessage()]); throw new MissingConnectionException(['reason' => $e->getMessage()]);
} }
} }
Expand Down

0 comments on commit 3bbac01

Please sign in to comment.