Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix logic of where method to work with whereNot #50

Closed
wants to merge 11 commits into from

Conversation

likeadeckofcards
Copy link
Member

This PR adjusts the functionality of where method to make the method handle the boolean values set by whereNot method in Laravel's default builder classes.

Fixes #49

@likeadeckofcards likeadeckofcards requested a review from Smef May 24, 2023 13:40
@likeadeckofcards likeadeckofcards self-assigned this May 24, 2023
@Smef
Copy link
Member

Smef commented May 31, 2023

override Eloquent/Builder.php applyScopes()

  • loop through each find and apply the scope to include requests
  • (skip over omits)
  • if we find no include finds, we should apply the scope

in where handler for FMBaseBuilder

  • if the new find is a where
  • add the find criteria to the last include or make a new include before the omits
  • if the new find is an whereNot(omit), add a new omit request,

@likeadeckofcards likeadeckofcards force-pushed the bug/fix-where-not branch 2 times, most recently from 7727930 to 5d4e5b6 Compare August 2, 2023 18:24
@Smef Smef force-pushed the bug/fix-where-not branch from 63acd69 to 0e2a995 Compare March 20, 2024 21:14
@Smef Smef closed this Mar 21, 2024
@Smef Smef deleted the bug/fix-where-not branch March 21, 2024 18:50
@Smef
Copy link
Member

Smef commented Mar 21, 2024

This was merged into 2.0.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

whereNot() method not working properly?
2 participants