Add space between catch and ‘(‘
[MAILPOET-1791]
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user