We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -53,7 +53,7 @@ |
||
| 53 | 53 | */ |
| 54 | 54 | public function getFieldsWithRelationType($relation_types): array |
| 55 | 55 | { |
| 56 | - $relation_types = is_array($relation_types) ?: (array)$relation_types; |
|
| 56 | + $relation_types = is_array($relation_types) ?: (array) $relation_types; |
|
| 57 | 57 | return collect($this->fields()) |
| 58 | 58 | ->where('model') |
| 59 | 59 | ->whereIn('relation_type', $relation_types) |
@@ -13,7 +13,7 @@ |
||
| 13 | 13 | */ |
| 14 | 14 | public function up() |
| 15 | 15 | { |
| 16 | - Schema::create('account_details', function (Blueprint $table) { |
|
| 16 | + Schema::create('account_details', function(Blueprint $table) { |
|
| 17 | 17 | $table->increments('id'); |
| 18 | 18 | $table->integer('user_id')->unsigned(); |
| 19 | 19 | $table->string('nickname'); |