@@ -62,7 +62,7 @@ |
||
| 62 | 62 | */ |
| 63 | 63 | public static function make(GitterUser $gitterUser, \Closure $new = null) |
| 64 | 64 | { |
| 65 | - if ($new === null) { $new = function(){}; } |
|
| 65 | + if ($new === null) { $new = function() {}; } |
|
| 66 | 66 | |
| 67 | 67 | $user = static::where('gitter_id', $gitterUser->id)->first(); |
| 68 | 68 | if (!$user) { |
@@ -38,7 +38,7 @@ |
||
| 38 | 38 | */ |
| 39 | 39 | public static function make(GitterRoom $gitterRoom, \Closure $new = null) |
| 40 | 40 | { |
| 41 | - if ($new === null) { $new = function(){}; } |
|
| 41 | + if ($new === null) { $new = function() {}; } |
|
| 42 | 42 | |
| 43 | 43 | $room = static::where('gitter_id', $gitterRoom->id)->first(); |
| 44 | 44 | if (!$room) { |