Passed
Push — master ( cf3c32...653cd2 )
by Bas
03:15
created
src/Query/Builder.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
      */
119 119
     public function get($columns = ['*'])
120 120
     {
121
-        $results = collect($this->onceWithColumns(Arr::wrap($columns), function () {
121
+        $results = collect($this->onceWithColumns(Arr::wrap($columns), function() {
122 122
             return $this->runSelect();
123 123
         }));
124 124
         return $results;
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
      */
133 133
     public function update(array $values)
134 134
     {
135
-        $response =  $this->connection->update($this->grammar->compileUpdate($this, $values)->aqb);
135
+        $response = $this->connection->update($this->grammar->compileUpdate($this, $values)->aqb);
136 136
         $this->aqb = new QueryBuilder();
137 137
         return $response;
138 138
     }
Please login to merge, or discard this patch.