Add space between catch and ‘(‘

[MAILPOET-1791]
This commit is contained in:
Ján Mikláš
2019-02-13 12:57:42 +01:00
committed by M. Shull
parent a8972ca281
commit 9e9561e576
50 changed files with 115 additions and 115 deletions

View File

@@ -20,7 +20,7 @@ class ModelTest extends \MailPoetTest {
try {
$model::findMany();
$this->fail('Exception was not thrown');
} catch(\Exception $e) {
} catch (\Exception $e) {
expect($e instanceof \PDOException)->false();
expect($e->getMessage())->equals($message);
}
@@ -86,4 +86,4 @@ class ModelTest extends \MailPoetTest {
function _after() {
\ORM::setDb(null);
}
}
}