--level used: 5Similar to https://github.com/nunomaduro/larastan/issues/272 I am getting false positives.
Commission::query()
->whereNotNull('reviewed_at')
->whereHas('user')
->get();
Curiously enough, if I leave out either of the where() calls, the error is gone.
That code doesn't even use dynamic wheres. It's just builder methods. I. Guess this will also be fixed with #325
Can you test this with the latest changes in master branch?
Yep, seems to have been fixed. Thanks!
Good job @canvural
Most helpful comment
That code doesn't even use dynamic wheres. It's just builder methods. I. Guess this will also be fixed with #325