We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -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'); |
@@ -190,7 +190,7 @@ |
||
190 | 190 | $belongsToFields = $this->getFieldsWithRelationType('BelongsTo'); |
191 | 191 | |
192 | 192 | foreach ($belongsToFields as $relationField) { |
193 | - if(method_exists($item, $this->getOnlyRelationEntity($relationField))) { |
|
193 | + if (method_exists($item, $this->getOnlyRelationEntity($relationField))) { |
|
194 | 194 | $relatedId = Arr::get($data, $relationField['name']); |
195 | 195 | $related = $relationField['model']::find($relatedId); |
196 | 196 |