Completed
Push — master ( 89deac...cf3c32 )
by Bas
02:49
created
src/AranguentServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -37,8 +37,8 @@  discard block
 block discarded – undo
37 37
     public function register()
38 38
     {
39 39
         // Add database driver.
40
-        $this->app->resolving('db', function ($db) {
41
-            $db->extend('arangodb', function ($config, $name) {
40
+        $this->app->resolving('db', function($db) {
41
+            $db->extend('arangodb', function($config, $name) {
42 42
                 $config['name'] = $name;
43 43
                 $connection = new Connection($config);
44 44
                 $connection->setSchemaGrammar(new SchemaGrammar);
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
             });
48 48
         });
49 49
 
50
-        $this->app->resolving(function ($app) {
50
+        $this->app->resolving(function($app) {
51 51
             if (class_exists('Illuminate\Foundation\AliasLoader')) {
52 52
                 $loader = \Illuminate\Foundation\AliasLoader::getInstance();
53 53
                 $loader->alias('Eloquent', 'LaravelFreelancerNL\Aranguent\Eloquent\Model');
Please login to merge, or discard this patch.
src/Migrations/MigrationCreator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
         // Here we will replace the table place-holders with the table specified by
69 69
         // the developer, which is useful for quickly creating a tables creation
70 70
         // or update migration from the console instead of typing it manually.
71
-        if (! is_null($collection)) {
71
+        if (!is_null($collection)) {
72 72
             $stub = str_replace('DummyCollection', $collection, $stub);
73 73
         }
74 74
 
Please login to merge, or discard this patch.
src/Schema/Builder.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
      */
57 57
     public function create($collection, Closure $callback, $config = [])
58 58
     {
59
-        $this->build(tap($this->createBlueprint($collection), function ($blueprint) use ($callback, $config) {
59
+        $this->build(tap($this->createBlueprint($collection), function($blueprint) use ($callback, $config) {
60 60
             $blueprint->create($config);
61 61
 
62 62
             $callback($blueprint);
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
      */
171 171
     protected function getAllCollections(array $options = [])
172 172
     {
173
-        if (! isset($options['excludeSystem'])) {
173
+        if (!isset($options['excludeSystem'])) {
174 174
             $options['excludeSystem'] = true;
175 175
         }
176 176
 
Please login to merge, or discard this patch.
src/Concerns/ManagesTransactions.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
     {
30 30
         $this->beginTransaction();
31 31
 
32
-        return tap($callback($this), function () use ($options, $attempts) {
32
+        return tap($callback($this), function() use ($options, $attempts) {
33 33
             $this->commit($options, $attempts);
34 34
         });
35 35
     }
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
 
81 81
 //        $query = addslashes($query);
82 82
         $jsCommand = 'db._query(aql`'.$query.'`';
83
-        if (! empty($bindings)) {
83
+        if (!empty($bindings)) {
84 84
             $bindings = json_encode($bindings);
85 85
             $jsCommand .= ', '.$bindings;
86 86
         }
@@ -209,10 +209,10 @@  discard block
 block discarded – undo
209 209
      */
210 210
     public function commit($options = [], $attempts = 1)
211 211
     {
212
-        if (! $this->transactions > 0) {
212
+        if (!$this->transactions > 0) {
213 213
             throw new \Exception('Transaction committed before starting one.');
214 214
         }
215
-        if (! isset($this->transactionCommands[$this->transactions]) || empty($this->transactionCommands[$this->transactions])) {
215
+        if (!isset($this->transactionCommands[$this->transactions]) || empty($this->transactionCommands[$this->transactions])) {
216 216
             throw new \Exception('Cannot commit an empty transaction.');
217 217
         }
218 218
 
Please login to merge, or discard this patch.
src/Console/Migrations/MigrateMakeCommand.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
         $name = Str::snake(trim($this->input->getArgument('name')));
49 49
 
50 50
         $collection = $this->input->getOption('collection');
51
-        if (! $collection) {
51
+        if (!$collection) {
52 52
             $collection = $this->input->getOption('table');
53 53
         }
54 54
 
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
         // If no table was given as an option but a create option is given then we
58 58
         // will use the "create" option as the table name. This allows the devs
59 59
         // to pass a table name into this option as a short-cut for creating.
60
-        if (! $collection && is_string($create)) {
60
+        if (!$collection && is_string($create)) {
61 61
             $collection = $create;
62 62
 
63 63
             $create = true;
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
         // Next, we will attempt to guess the table name if this the migration has
67 67
         // "create" in the name. This will allow us to provide a convenient way
68 68
         // of creating migrations that create new tables for the application.
69
-        if (! $collection) {
69
+        if (!$collection) {
70 70
             [$collection, $create] = TableGuesser::guess($name);
71 71
         }
72 72
 
Please login to merge, or discard this patch.
src/Console/Migrations/AranguentConvertMigrationsCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
      */
53 53
     public function handle()
54 54
     {
55
-        if (! $this->confirmToProceed()) {
55
+        if (!$this->confirmToProceed()) {
56 56
             return;
57 57
         }
58 58
 
Please login to merge, or discard this patch.
src/Migrations/DatabaseMigrationRepository.php 2 patches
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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();
Please login to merge, or discard this patch.
Braces   +15 added lines, -10 removed lines patch added patch discarded remove patch
@@ -48,10 +48,11 @@  discard block
 block discarded – undo
48 48
      */
49 49
     public function getRan()
50 50
     {
51
-        $qb = AQB::for('m', 'migrations')
52
-            ->sort(['m.batch', 'm.migrations'])
51
+        $qb = AQB::for('m', 'migrations') {
52
+                    ->sort(['m.batch', 'm.migrations'])
53 53
             ->return('m.migration')
54 54
             ->get();
55
+        }
55 56
 
56 57
 
57 58
         return $this->getConnection()->select($qb->query);
@@ -72,12 +73,13 @@  discard block
 block discarded – undo
72 73
     {
73 74
         $bindings['steps'] = $steps;
74 75
 
75
-        $qb = AQB::for('m', 'migrations')
76
-            ->filter('m.batch', '>=', 1)
76
+        $qb = AQB::for('m', 'migrations') {
77
+                    ->filter('m.batch', '>=', 1)
77 78
             ->sort([['m.batch', 'DESC'], ['m.migration', 'DESC']])
78 79
             ->limit($steps)
79 80
             ->return(['migration' => 'm.migration', 'batch' => 'm.batch'])
80 81
             ->get();
82
+        }
81 83
 
82 84
         return $this->getConnection()->select($qb->query);
83 85
 
@@ -87,11 +89,12 @@  discard block
 block discarded – undo
87 89
     {
88 90
         $batch = $this->getLastBatchNumber();
89 91
 
90
-        $qb = AQB::for('m', 'migrations')
91
-            ->filter('m.batch', $batch)
92
+        $qb = AQB::for('m', 'migrations') {
93
+                    ->filter('m.batch', $batch)
92 94
             ->sort('m.migration', 'desc')
93 95
             ->return('m')
94 96
             ->get();
97
+        }
95 98
 
96 99
         return $this->getConnection()->select($qb->query);
97 100
 
@@ -107,10 +110,11 @@  discard block
 block discarded – undo
107 110
      */
108 111
     public function getMigrationBatches()
109 112
     {
110
-        $qb = AQB::for('m', 'migrations')
111
-            ->sort([['m.batch'], ['m.migration']])
113
+        $qb = AQB::for('m', 'migrations') {
114
+                    ->sort([['m.batch'], ['m.migration']])
112 115
             ->return(['batch' => 'm.batch', 'migration' => 'm.migration'])
113 116
             ->get();
117
+        }
114 118
 
115 119
         return $this->getConnection()->select($qb->query);
116 120
 
@@ -145,10 +149,11 @@  discard block
 block discarded – undo
145 149
      */
146 150
     public function delete($migration)
147 151
     {
148
-        $qb = AQB::for('m', 'migrations')
149
-                ->filter('m.migration', $migration->migration)
152
+        $qb = AQB::for('m', 'migrations') {
153
+                        ->filter('m.migration', $migration->migration)
150 154
                 ->remove('m', 'migrations')
151 155
                 ->get();
156
+        }
152 157
 
153 158
         $this->getConnection()->delete($qb->query, $qb->binds);
154 159
 
Please login to merge, or discard this patch.
src/Connection.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
      */
155 155
     public function cursor($query, $bindings = [], $useReadPdo = null, $transactionCollections = null)
156 156
     {
157
-        return $this->run($query, $bindings, function ($query, $bindings) use ($transactionCollections) {
157
+        return $this->run($query, $bindings, function($query, $bindings) use ($transactionCollections) {
158 158
             if ($this->pretending()) {
159 159
                 return [];
160 160
             }
@@ -187,7 +187,7 @@  discard block
 block discarded – undo
187 187
             $query = $query->query;
188 188
         }
189 189
 
190
-        return $this->run($query, $bindings, function ($query, $bindings) use ($transactionCollections) {
190
+        return $this->run($query, $bindings, function($query, $bindings) use ($transactionCollections) {
191 191
             if ($this->pretending()) {
192 192
                 return true;
193 193
             }
@@ -224,7 +224,7 @@  discard block
 block discarded – undo
224 224
             $query = $query->query;
225 225
         }
226 226
 
227
-        return $this->run($query, $bindings, function ($query, $bindings) use ($transactionCollections) {
227
+        return $this->run($query, $bindings, function($query, $bindings) use ($transactionCollections) {
228 228
             if ($this->pretending()) {
229 229
                 return 0;
230 230
             }
@@ -259,7 +259,7 @@  discard block
 block discarded – undo
259 259
      */
260 260
     public function unprepared($query)
261 261
     {
262
-        return $this->run($query, [], function ($query) {
262
+        return $this->run($query, [], function($query) {
263 263
             if ($this->pretending()) {
264 264
                 return true;
265 265
             }
@@ -329,7 +329,7 @@  discard block
 block discarded – undo
329 329
             $query = $query->query;
330 330
         }
331 331
 
332
-        return $this->run($query, $bindings, function ($query, $bindings, $transactionCollections= null) {
332
+        return $this->run($query, $bindings, function($query, $bindings, $transactionCollections = null) {
333 333
             if ($this->pretending()) {
334 334
                 return [];
335 335
             }
Please login to merge, or discard this patch.
src/Schema/Blueprint.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
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
     }
@@ -248,7 +248,7 @@  discard block
 block discarded – undo
248 248
      */
249 249
     protected function creating()
250 250
     {
251
-        return collect($this->commands)->contains(function ($command) {
251
+        return collect($this->commands)->contains(function($command) {
252 252
             return $command->name === 'create';
253 253
         });
254 254
     }
@@ -284,7 +284,7 @@  discard block
 block discarded – undo
284 284
         }
285 285
 
286 286
         $collections = $this->collectionHandler->getAllCollections(['excludeSystem' => true]);
287
-        if (! isset($collections[$this->collection])) {
287
+        if (!isset($collections[$this->collection])) {
288 288
             $this->collectionHandler->create($this->collection, $options);
289 289
         }
290 290
     }
Please login to merge, or discard this patch.