ekvedaras / laravel-query-intellij

💿 Laravel Query Builder integration for PhpStorm
MIT License
46 stars 4 forks source link

The operator in join method should not be inspected. #20

Closed ekvedaras closed 3 years ago

ekvedaras commented 3 years ago

Example snippet:

User::query()->join('customers', 'customers.user_id', '=', 'users.id');

At the moment it complains about = being an unknown column. I think this is fixed for where() methods, but maybe not for join() 🤔