You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Any reason why we are extending all of the models with AbstractWinkModel?
From what I can see the only real use they are providing is overriding the DB Connection for Wink.
We can Reduce the WinkAuthor code by half by extending from Illuminate\Foundation\Auth\User, using AbstractWinkModel as a trait and removing all the redundant code.
I think this will help us keep the WinkAuthor model close to Laravel defaults
The text was updated successfully, but these errors were encountered:
Any reason why we are extending all of the models with AbstractWinkModel?
From what I can see the only real use they are providing is overriding the DB Connection for Wink.
We can Reduce the WinkAuthor code by half by extending from Illuminate\Foundation\Auth\User, using AbstractWinkModel as a trait and removing all the redundant code.
I think this will help us keep the WinkAuthor model close to Laravel defaults
The text was updated successfully, but these errors were encountered: