@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | */ |
49 | 49 | public function get() |
50 | 50 | { |
51 | - return Coroutine\create(function () { |
|
51 | + return Coroutine\create(function() { |
|
52 | 52 | list($statement, $bindings) = $this->builder->build(); |
53 | 53 | |
54 | 54 | // TODO |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | */ |
63 | 63 | public function first() |
64 | 64 | { |
65 | - return Coroutine\create(function () { |
|
65 | + return Coroutine\create(function() { |
|
66 | 66 | $rows = (yield $this->limit(1)->get()); |
67 | 67 | |
68 | 68 | if (count($rows) > 0) { |