Passed
Branch master (b0218f)
by Amelia
04:09
created
Category
src/Util/QueryParams.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.
migrations/add_monzo_columns.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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',
Please login to merge, or discard this patch.