@@ -28,7 +28,7 @@ discard block |
||
| 28 | 28 | */ |
| 29 | 29 | public function build() |
| 30 | 30 | { |
| 31 | - $params = collect($this->params)->map(function ($value, string $key) { |
|
| 31 | + $params = collect($this->params)->map(function($value, string $key) { |
|
| 32 | 32 | return $this->buildQueryParams($value, $key); |
| 33 | 33 | }); |
| 34 | 34 | |
@@ -62,7 +62,7 @@ discard block |
||
| 62 | 62 | { |
| 63 | 63 | $name = rawurlencode($name); |
| 64 | 64 | |
| 65 | - return collect($value)->map(function ($value, $key) use ($name) { |
|
| 65 | + return collect($value)->map(function($value, $key) use ($name) { |
|
| 66 | 66 | if (is_string($key)) { |
| 67 | 67 | $key = rawurlencode($key); |
| 68 | 68 | |
@@ -13,7 +13,7 @@ discard block |
||
| 13 | 13 | */ |
| 14 | 14 | public function up() |
| 15 | 15 | { |
| 16 | - Schema::table('users', function (Blueprint $table) { |
|
| 16 | + Schema::table('users', function(Blueprint $table) { |
|
| 17 | 17 | $table->string('monzo_user_id')->index()->nullable(); |
| 18 | 18 | $table->text('monzo_access_token')->nullable(); |
| 19 | 19 | $table->text('monzo_refresh_token')->nullable(); |
@@ -30,7 +30,7 @@ discard block |
||
| 30 | 30 | */ |
| 31 | 31 | public function down() |
| 32 | 32 | { |
| 33 | - Schema::table('users', function (Blueprint $table) { |
|
| 33 | + Schema::table('users', function(Blueprint $table) { |
|
| 34 | 34 | $table->dropColumn([ |
| 35 | 35 | 'monzo_user_id', |
| 36 | 36 | 'monzo_access_token', |