whitespaces and formatting

This commit is contained in:
silverqx
2022-08-19 14:50:41 +02:00
parent b8a4df59e2
commit 9d8c15bf29
+2 -2
View File
@@ -146,8 +146,8 @@ namespace Orm::Tiny::Relations
HasOne<Model, Related>::newRelatedInstanceFor(const Model &parent) const
{
return this->m_related->newInstance().setAttribute(
this->getForeignKeyName(), parent.getAttribute(this->m_localKey)
);
this->getForeignKeyName(),
parent.getAttribute(this->m_localKey));
}
} // namespace Orm::Tiny::Relations