Skip to content

Commit ac75c8b

Browse files
committed
Fix StyleCI problems
1 parent dcae801 commit ac75c8b

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/Compoships.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public function qualifyColumn($column)
3737
$connection = $this->getConnection();
3838
$prefix = $connection->getTablePrefix();
3939

40-
return $prefix . $this->getTable() . '.' . $c;
40+
return $prefix.$this->getTable().'.'.$c;
4141
}, $column);
4242
}
4343

src/Database/Eloquent/Relations/BelongsTo.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ public function associate($model)
5454
$relationName = property_exists($this, 'relationName') ? $this->relationName : $this->relation;
5555
if ($model instanceof Model) {
5656
$this->child->setRelation($relationName, $model);
57-
// proper unset // https://github.com/illuminate/database/commit/44411c7288fc7b7d4e5680cfcdaa46d348b5c981
5857
} elseif ($this->child->isDirty($this->foreignKey)) {
58+
// proper unset // https://github.com/illuminate/database/commit/44411c7288fc7b7d4e5680cfcdaa46d348b5c981
5959
$this->child->unsetRelation($relationName);
6060
}
6161

0 commit comments

Comments
 (0)