Skip to content

Commit edf8592

Browse files
committed
Applied fixes from StyleCI (mongodb#1010)
1 parent 2a56aa2 commit edf8592

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Jenssegers/Mongodb/Connection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ protected function getDsn(array $config)
185185
}
186186
}
187187

188-
return "mongodb://" . implode(',', $hosts) . ($database? "/{$database}" : '');
188+
return "mongodb://" . implode(',', $hosts) . ($database ? "/{$database}" : '');
189189
}
190190

191191
/**

src/Jenssegers/Mongodb/Schema/Grammar.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55
class Grammar extends BaseGrammar
66
{
7-
}
7+
}

0 commit comments

Comments
 (0)