Skip to content
This repository has been archived by the owner on Sep 22, 2024. It is now read-only.

Commit

Permalink
Update according to Laravel 5.8 changes
Browse files Browse the repository at this point in the history
  • Loading branch information
pactode committed Mar 6, 2019
1 parent 09ce010 commit 88d9e21
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/macros/joinRelation.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

return $this->join(
$relation->getRelated()->getTable(),
$relation->getQualifiedForeignKey(),
$relation->getQualifiedForeignKeyName(),
$operator,
$relation->getQualifiedOwnerKeyName()
);
Expand Down
2 changes: 1 addition & 1 deletion src/macros/leftJoinRelation.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

return $this->leftJoin(
$relation->getRelated()->getTable(),
$relation->getQualifiedForeignKey(),
$relation->getQualifiedForeignKeyName(),
$operator,
$relation->getQualifiedOwnerKeyName()
);
Expand Down

0 comments on commit 88d9e21

Please sign in to comment.