@@ -155,7 +155,7 @@ discard block |
||
155 | 155 | */ |
156 | 156 | public function cursor($query, $bindings = [], $useReadPdo = null, $transactionCollections = null) |
157 | 157 | { |
158 | - return $this->run($query, $bindings, function ($query, $bindings) use ($transactionCollections) { |
|
158 | + return $this->run($query, $bindings, function($query, $bindings) use ($transactionCollections) { |
|
159 | 159 | if ($this->pretending()) { |
160 | 160 | return []; |
161 | 161 | } |
@@ -182,7 +182,7 @@ discard block |
||
182 | 182 | */ |
183 | 183 | public function statement($query, $bindings = [], $transactionCollections = null) |
184 | 184 | { |
185 | - return $this->run($query, $bindings, function ($query, $bindings) use ($transactionCollections) { |
|
185 | + return $this->run($query, $bindings, function($query, $bindings) use ($transactionCollections) { |
|
186 | 186 | if ($this->pretending()) { |
187 | 187 | return true; |
188 | 188 | } |
@@ -213,7 +213,7 @@ discard block |
||
213 | 213 | */ |
214 | 214 | public function affectingStatement($query, $bindings = [], $transactionCollections = null) |
215 | 215 | { |
216 | - return $this->run($query, $bindings, function ($query, $bindings) use ($transactionCollections) { |
|
216 | + return $this->run($query, $bindings, function($query, $bindings) use ($transactionCollections) { |
|
217 | 217 | if ($this->pretending()) { |
218 | 218 | return 0; |
219 | 219 | } |
@@ -248,7 +248,7 @@ discard block |
||
248 | 248 | */ |
249 | 249 | public function unprepared($query) |
250 | 250 | { |
251 | - return $this->run($query, [], function ($query) { |
|
251 | + return $this->run($query, [], function($query) { |
|
252 | 252 | if ($this->pretending()) { |
253 | 253 | return true; |
254 | 254 | } |
@@ -298,7 +298,7 @@ discard block |
||
298 | 298 | */ |
299 | 299 | public function select($query, $bindings = [], $useReadPdo = true, $transactionCollections = null) |
300 | 300 | { |
301 | - return $this->run($query, $bindings, function ($query, $bindings) { |
|
301 | + return $this->run($query, $bindings, function($query, $bindings) { |
|
302 | 302 | if ($this->pretending()) { |
303 | 303 | return []; |
304 | 304 | } |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | */ |
49 | 49 | public function getRan() |
50 | 50 | { |
51 | - $qb = AQB::for('m', 'migrations') |
|
51 | + $qb = AQB::for ('m', 'migrations') |
|
52 | 52 | ->sort(['m.batch', 'm.migrations']) |
53 | 53 | ->return('m.migration') |
54 | 54 | ->get(); |
@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | { |
73 | 73 | $bindings['steps'] = $steps; |
74 | 74 | |
75 | - $qb = AQB::for('m', 'migrations') |
|
75 | + $qb = AQB::for ('m', 'migrations') |
|
76 | 76 | ->filter('m.batch', '>=', 1) |
77 | 77 | ->sort([['m.batch', 'DESC'], ['m.migration', 'DESC']]) |
78 | 78 | ->limit($steps) |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | { |
88 | 88 | $batch = $this->getLastBatchNumber(); |
89 | 89 | |
90 | - $qb = AQB::for('m', 'migrations') |
|
90 | + $qb = AQB::for ('m', 'migrations') |
|
91 | 91 | ->filter('m.batch', $batch) |
92 | 92 | ->sort('m.migration', 'desc') |
93 | 93 | ->return('m') |
@@ -107,7 +107,7 @@ discard block |
||
107 | 107 | */ |
108 | 108 | public function getMigrationBatches() |
109 | 109 | { |
110 | - $qb = AQB::for('m', 'migrations') |
|
110 | + $qb = AQB::for ('m', 'migrations') |
|
111 | 111 | ->sort([['m.batch'], ['m.migration']]) |
112 | 112 | ->return(['batch' => 'm.batch', 'migration' => 'm.migration']) |
113 | 113 | ->get(); |
@@ -145,7 +145,7 @@ discard block |
||
145 | 145 | */ |
146 | 146 | public function delete($migration) |
147 | 147 | { |
148 | - $qb = AQB::for('m', 'migrations') |
|
148 | + $qb = AQB::for ('m', 'migrations') |
|
149 | 149 | ->filter('m.migration', $migration->migration) |
150 | 150 | ->remove('m', 'migrations') |
151 | 151 | ->get(); |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | */ |
54 | 54 | protected function registerRepository() |
55 | 55 | { |
56 | - $this->app->singleton('migration.repository', function ($app) { |
|
56 | + $this->app->singleton('migration.repository', function($app) { |
|
57 | 57 | $collection = $app['config']['database.migrations']; |
58 | 58 | |
59 | 59 | return new DatabaseMigrationRepository($app['db'], $collection); |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | |
63 | 63 | protected function registerCreator() |
64 | 64 | { |
65 | - $this->app->singleton('migration.creator', function ($app) { |
|
65 | + $this->app->singleton('migration.creator', function($app) { |
|
66 | 66 | return new MigrationCreator($app['files']); |
67 | 67 | }); |
68 | 68 | } |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | */ |
93 | 93 | protected function registerMigrateMakeCommand() |
94 | 94 | { |
95 | - $this->app->singleton('command.migrate.make', function ($app) { |
|
95 | + $this->app->singleton('command.migrate.make', function($app) { |
|
96 | 96 | // Once we have the migration creator registered, we will create the command |
97 | 97 | // and inject the creator. The creator is responsible for the actual file |
98 | 98 | // creation of the migrations, and may be extended by these developers. |
@@ -106,7 +106,7 @@ discard block |
||
106 | 106 | |
107 | 107 | protected function registerAranguentConvertMigrationsCommand() |
108 | 108 | { |
109 | - $this->app->singleton('command.aranguent.convert-migrations', function ($app) { |
|
109 | + $this->app->singleton('command.aranguent.convert-migrations', function($app) { |
|
110 | 110 | return new AranguentConvertMigrationsCommand($app['migrator']); |
111 | 111 | }); |
112 | 112 | } |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | |
103 | 103 | $this->prefix = $prefix; |
104 | 104 | |
105 | - if (! is_null($callback)) { |
|
105 | + if (!is_null($callback)) { |
|
106 | 106 | $callback($this); |
107 | 107 | } |
108 | 108 | } |
@@ -244,7 +244,7 @@ discard block |
||
244 | 244 | */ |
245 | 245 | protected function creating() |
246 | 246 | { |
247 | - return collect($this->commands)->contains(function ($command) { |
|
247 | + return collect($this->commands)->contains(function($command) { |
|
248 | 248 | return $command->name === 'create'; |
249 | 249 | }); |
250 | 250 | } |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | $filter[] = ['doc.'.$attribute, '!=', 'null']; |
36 | 36 | } |
37 | 37 | |
38 | - $qb = AQB::for('doc', $collection) |
|
38 | + $qb = AQB::for ('doc', $collection) |
|
39 | 39 | ->filter($filter) |
40 | 40 | ->limit(1) |
41 | 41 | ->return('true') |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | ['doc.'.$command->to], |
66 | 66 | ]; |
67 | 67 | |
68 | - $qb = AQB::for('doc', $collection) |
|
68 | + $qb = AQB::for ('doc', $collection) |
|
69 | 69 | ->filter($filter) |
70 | 70 | ->update( |
71 | 71 | 'doc', |
@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | $command->to => 'doc.'.$command->from, |
75 | 75 | ], |
76 | 76 | $collection) |
77 | - ->options( ['keepNull' => true]) |
|
77 | + ->options(['keepNull' => true]) |
|
78 | 78 | ->get(); |
79 | 79 | |
80 | 80 | $command->aqb = $qb; |
@@ -101,8 +101,8 @@ discard block |
||
101 | 101 | $filter[] = ['doc.'.$attribute, '!=', 'null', 'OR']; |
102 | 102 | $data[$attribute] = 'null'; |
103 | 103 | } |
104 | - $qb = AQB::for('doc', $collection) |
|
105 | - ->filter($filter ) |
|
104 | + $qb = AQB::for ('doc', $collection) |
|
105 | + ->filter($filter) |
|
106 | 106 | ->update('doc', $data, $collection) |
107 | 107 | ->options(['keepNull' => false]) |
108 | 108 | ->get(); |