laravel-shift / cli

A tool to run automated tasks for maintaining your Laravel projects.
MIT License
58 stars 6 forks source link

Do not apply the orderByDesc fix on Eloquent object if it uses Scout Driver #15

Open abishekrsrikaanth opened 3 months ago

abishekrsrikaanth commented 3 months ago

Issue:

If an Eloquent Query using the search method of Laravel Scout to search results using the scout driver and if the same query also uses orderBy('column_name','DESC'), shift cli transforms this to orderByDesc('column_name').

The method orderByDesc doesn't exist when using the Scout Driver.

Command:

shift-cli