We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Your issue may already be reported! Please search on the issue tracker before creating one.
I want to override the OrderByScope::class so that I can create my own implementation of the orderBy functionality.
It seems like the Scope has the foloowing default scopes:
class Scopes extends ScopesAbstract { protected $scopes = [ 'orderBy' => OrderByScope::class, 'begin' => WhereDateGreaterScope::class, 'end' => WhereDateLessScope::class, ];
This means it will always automatically use the OrderByScope class. Can we provide our own class for this?
OrderByScope
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Your issue may already be reported!
Please search on the issue tracker before creating one.
Expected Behavior
I want to override the OrderByScope::class so that I can create my own implementation of the orderBy functionality.
Current Behavior
It seems like the Scope has the foloowing default scopes:
This means it will always automatically use the
OrderByScope
class. Can we provide our own class for this?The text was updated successfully, but these errors were encountered: